destroy_ga2d_logical Subroutine

public subroutine destroy_ga2d_logical(me)

destroy the 2d growing array

Arguments

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

dynamic array to init


Called by

proc~~destroy_ga2d_logical~~CalledByGraph proc~destroy_ga2d_logical destroy_ga2d_logical interface~destroy~19 destroy interface~destroy~19->proc~destroy_ga2d_logical

Contents

Source Code


Source Code

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

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

  end subroutine destroy_ga2d_logical