ESMF_HConfigIterNE Function

private function ESMF_HConfigIterNE(HConfig1, HConfig2)

Arguments

Type IntentOptional Attributes Name
type(ESMF_HConfigIter), intent(in) :: HConfig1
type(ESMF_HConfigIter), intent(in) :: HConfig2

Return Value logical


Source Code

  function ESMF_HConfigIterNE(HConfig1, HConfig2)
!
! !RETURN VALUE:
    logical :: ESMF_HConfigIterNE

! !ARGUMENTS:
    type(ESMF_HConfigIter), intent(in) :: HConfig1
    type(ESMF_HConfigIter), intent(in) :: HConfig2

! !DESCRIPTION:
!   Test if both {\tt HConfig1} and {\tt HConfig2} alias the same
!   ESMF HConfigIter object.
!
!EOPI
!-------------------------------------------------------------------------------

    ESMF_HConfigIterNE = .not.ESMF_HConfigIterEQ(HConfig1, HConfig2)

  end function ESMF_HConfigIterNE