lge_char_string Function

private elemental function lge_char_string(lhs, rhs) result(is_lge)

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

Arguments

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

Return Value logical


Calls

proc~~lge_char_string~~CallsGraph proc~lge_char_string lge_char_string proc~maybe maybe proc~lge_char_string->proc~maybe

Called by

proc~~lge_char_string~~CalledByGraph proc~lge_char_string lge_char_string interface~lge lge interface~lge->proc~lge_char_string

Source Code

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

   is_lge = lge(lhs, maybe(rhs))

end function lge_char_string