gt_string_char Function

private elemental function gt_string_char(lhs, rhs) result(is_gt)

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~~gt_string_char~~CallsGraph proc~gt_string_char gt_string_char proc~maybe maybe proc~gt_string_char->proc~maybe

Called by

proc~~gt_string_char~~CalledByGraph proc~gt_string_char gt_string_char interface~operator(gt) operator(>) interface~operator(gt)->proc~gt_string_char

Source Code

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

   is_gt = maybe(lhs) > rhs

end function gt_string_char