empty_da_real Subroutine

public subroutine empty_da_real(me)

empty all contents of the array without changing the size or status of any array

Arguments

Type IntentOptional Attributes Name
type(dyn_realarray_type) :: me

Called by

proc~~empty_da_real~~CalledByGraph proc~empty_da_real empty_da_real interface~empty~8 empty interface~empty~8->proc~empty_da_real

Contents

Source Code


Source Code

  subroutine empty_da_real(me)
    !------------------------------------------------------------------------
    type(dyn_realarray_type) :: me !< array to sorttruncate
    !------------------------------------------------------------------------
    ! reset the number of entries
    me%nvals = 0
  end subroutine empty_da_real