lgt_string_char Function

private elemental function lgt_string_char(lhs, rhs) result(is_lgt)

Lexically compare two character sequences for being greater. In this version the left-hand side character sequences is by a string.

Arguments

Type IntentOptional Attributes Name
type(string_type), intent(in) :: lhs
character(len=*), intent(in) :: rhs

Return Value logical


Calls

proc~~lgt_string_char~~CallsGraph proc~lgt_string_char lgt_string_char proc~maybe maybe proc~lgt_string_char->proc~maybe

Called by

proc~~lgt_string_char~~CalledByGraph proc~lgt_string_char lgt_string_char interface~lgt lgt interface~lgt->proc~lgt_string_char

Source Code

elemental function lgt_string_char(lhs, rhs) result(is_lgt)
   type(string_type), intent(in) :: lhs
   character(len=*), intent(in) :: rhs
   logical :: is_lgt

   is_lgt = lgt(maybe(lhs), rhs)

end function lgt_string_char