ESMF_HConfigMatch_FlagLT Function

private function ESMF_HConfigMatch_FlagLT(hcmt1, hcmt2)

Arguments

Type IntentOptional Attributes Name
type(ESMF_HConfigMatch_Flag), intent(in) :: hcmt1
type(ESMF_HConfigMatch_Flag), intent(in) :: hcmt2

Return Value logical


Called by

proc~~esmf_hconfigmatch_flaglt~~CalledByGraph proc~esmf_hconfigmatch_flaglt ESMF_HConfigMatch_FlagLT interface~operator(lt) operator(<) interface~operator(lt)->proc~esmf_hconfigmatch_flaglt

Source Code

  function ESMF_HConfigMatch_FlagLT(hcmt1, hcmt2)
!
! !RETURN VALUE:
    logical :: ESMF_HConfigMatch_FlagLT

! !ARGUMENTS:
    type(ESMF_HConfigMatch_Flag), intent(in) :: hcmt1
    type(ESMF_HConfigMatch_Flag), intent(in) :: hcmt2

! !DESCRIPTION:
!
!EOPI
!-------------------------------------------------------------------------------

    ESMF_HConfigMatch_FlagLT = hcmt1%value .lt. hcmt2%value

  end function ESMF_HConfigMatch_FlagLT