array_i1d_type Derived Type

type, private :: array_i1d_type


Components

Type Visibility Attributes Name Initial
integer, public, DIMENSION(:), POINTER, CONTIGUOUS :: DATA => Null()
integer, public :: refcount = 0

Source Code

   TYPE array_i1d_type
      INTEGER, DIMENSION(:), POINTER, CONTIGUOUS :: DATA => Null()
      INTEGER                                    :: refcount = 0
   END TYPE array_i1d_type