ESMF_HConfigMatch_FlagGT Function

private function ESMF_HConfigMatch_FlagGT(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_flaggt~~CalledByGraph proc~esmf_hconfigmatch_flaggt ESMF_HConfigMatch_FlagGT interface~operator(gt) operator(>) interface~operator(gt)->proc~esmf_hconfigmatch_flaggt

Source Code

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

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

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

    ESMF_HConfigMatch_FlagGT = hcmt1%value .gt. hcmt2%value

  end function ESMF_HConfigMatch_FlagGT