Lexically compare two character sequences for being less. In this version both character sequences are by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | lhs | |||
| type(string_type), | intent(in) | :: | rhs |
elemental function llt_string_string(lhs, rhs) result(is_llt) type(string_type), intent(in) :: lhs type(string_type), intent(in) :: rhs logical :: is_llt is_llt = llt(maybe(lhs), maybe(rhs)) end function llt_string_string