undef Function

public elemental function undef(t) result(lval)

Uses

  • proc~~undef~~UsesGraph proc~undef undef module~mapl_internalconstantsmod MAPL_InternalConstantsMod proc~undef->module~mapl_internalconstantsmod iso_fortran_env iso_fortran_env module~mapl_internalconstantsmod->iso_fortran_env

Arguments

Type IntentOptional Attributes Name
real(kind=ESMF_KIND_R4), intent(in) :: t

Return Value logical


Called by

proc~~undef~~CalledByGraph proc~undef undef proc~test_accumulate_r4 test_accumulate_R4 proc~test_accumulate_r4->proc~undef proc~test_calculate_mean_r4 test_calculate_mean_R4 proc~test_calculate_mean_r4->proc~undef

Source Code

   elemental logical function undef(t) result(lval)
      use MAPL_InternalConstantsMod, only: MAPL_UNDEFINED_REAL
      real(kind=ESMF_KIND_R4), intent(in) :: t

      lval = t == MAPL_UNDEFINED_REAL

   end function undef