Compare two character sequences for being greater. In this version the right-hand side character sequences is by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | lhs | |||
| type(string_type), | intent(in) | :: | rhs |
elemental function gt_char_string(lhs, rhs) result(is_gt) character(len=*), intent(in) :: lhs type(string_type), intent(in) :: rhs logical :: is_gt is_gt = lhs > maybe(rhs) end function gt_char_string