get_with_headers Function

private pure function get_with_headers(this) result(has_headers)

Type Bound

data_frame

Arguments

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

Return Value logical


Source Code

    pure function get_with_headers(this) result(has_headers)
        class(data_frame), intent(in) :: this
        logical :: has_headers
        has_headers = this % with_headers
    end function get_with_headers