lle_string_string Function

private elemental function lle_string_string(lhs, rhs) result(is_lle)

Lexically compare two character sequences for being less or equal. 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~~lle_string_string~~CallsGraph proc~lle_string_string lle_string_string proc~maybe maybe proc~lle_string_string->proc~maybe

Called by

proc~~lle_string_string~~CalledByGraph proc~lle_string_string lle_string_string interface~lle lle interface~lle->proc~lle_string_string

Source Code

elemental function lle_string_string(lhs, rhs) result(is_lle)
   type(string_type), intent(in) :: lhs
   type(string_type), intent(in) :: rhs
   logical :: is_lle

   is_lle = lle(maybe(lhs), maybe(rhs))

end function lle_string_string