empty_da_long Subroutine

public subroutine empty_da_long(me)

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

Arguments

Type IntentOptional Attributes Name
type(dyn_longarray_type) :: me

Called by

proc~~empty_da_long~~CalledByGraph proc~empty_da_long empty_da_long interface~empty~6 empty interface~empty~6->proc~empty_da_long

Contents

Source Code


Source Code

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