ESMF_HConfigMatch_FlagLE Function

private function ESMF_HConfigMatch_FlagLE(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_flagle~~CalledByGraph proc~esmf_hconfigmatch_flagle ESMF_HConfigMatch_FlagLE interface~operator(lt=) operator(<=) interface~operator(lt=)->proc~esmf_hconfigmatch_flagle

Source Code

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

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

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

    ESMF_HConfigMatch_FlagLE = hcmt1%value .le. hcmt2%value

  end function ESMF_HConfigMatch_FlagLE