destroy_ga_int Subroutine

public subroutine destroy_ga_int(me)

Arguments

Type IntentOptional Attributes Name
type(grw_intarray_type), intent(inout) :: me

Called by

proc~~destroy_ga_int~~CalledByGraph proc~destroy_ga_int destroy_ga_int interface~destroy~13 destroy interface~destroy~13->proc~destroy_ga_int

Contents

Source Code


Source Code

  subroutine destroy_ga_int(me)
    type(grw_intarray_type), intent(inout) :: me !< dynamic array to destroy

    me%containersize = 0
    me%nvals = 0
    if( allocated( me%val ) ) deallocate(me%val)

  end subroutine destroy_ga_int