lgt_string_string Function

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

Lexically compare two character sequences for being greater. In this version both character sequences are by a string.

Arguments

Type IntentOptional Attributes Name
type(string_type), intent(in) :: lhs
type(string_type), intent(in) :: rhs

Return Value logical


Calls

proc~~lgt_string_string~~CallsGraph proc~lgt_string_string lgt_string_string proc~maybe maybe proc~lgt_string_string->proc~maybe

Called by

proc~~lgt_string_string~~CalledByGraph proc~lgt_string_string lgt_string_string interface~lgt lgt interface~lgt->proc~lgt_string_string

Source Code

elemental function lgt_string_string(lhs, rhs) result(is_lgt)
   type(string_type), intent(in) :: lhs
   type(string_type), intent(in) :: rhs
   logical :: is_lgt

   is_lgt = lgt(maybe(lhs), maybe(rhs))

end function lgt_string_string