Lexically compare two character sequences for being greater or equal. In this version the left-hand side character sequences is by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | lhs | |||
| character(len=*), | intent(in) | :: | rhs |
elemental function lge_string_char(lhs, rhs) result(is_lge) type(string_type), intent(in) :: lhs character(len=*), intent(in) :: rhs logical :: is_lge is_lge = lge(maybe(lhs), rhs) end function lge_string_char