destroy_ga2d_char Subroutine

public subroutine destroy_ga2d_char(me)

destroy the 2d growing array

Arguments

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

dynamic array to init


Called by

proc~~destroy_ga2d_char~~CalledByGraph proc~destroy_ga2d_char destroy_ga2d_char interface~destroy~18 destroy interface~destroy~18->proc~destroy_ga2d_char

Contents

Source Code


Source Code

  subroutine destroy_ga2d_char(me)
    ! --------------------------------------------------------------------------
    !> dynamic array to init
    type(grw_char2darray_type), intent(inout) :: me
    ! --------------------------------------------------------------------------

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

  end subroutine destroy_ga2d_char