request_is_null Function

private pure function request_is_null(this) result(is_null)

Checks if the request is null/invalid

Type Bound

request_t

Arguments

Type IntentOptional Attributes Name
class(request_t), intent(in) :: this

Return Value logical


Source Code

   pure function request_is_null(this) result(is_null)
      !! Checks if the request is null/invalid
      class(request_t), intent(in) :: this
      logical :: is_null
      is_null = .not. this%is_valid
   end function request_is_null