empty_da_int Subroutine

public subroutine empty_da_int(me)

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

Arguments

Type IntentOptional Attributes Name
type(dyn_intarray_type) :: me

Called by

proc~~empty_da_int~~CalledByGraph proc~empty_da_int empty_da_int interface~empty~7 empty interface~empty~7->proc~empty_da_int

Contents

Source Code


Source Code

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