type_int_2d Derived Type

type, public :: type_int_2d


Components

Type Visibility Attributes Name Initial
integer(kind=int32), public, allocatable :: x(:)
integer(kind=int32), public, allocatable :: y(:)

Source Code

    type :: type_int_2d
        integer(int32), allocatable :: x(:)
        integer(int32), allocatable :: y(:)
    end type type_int_2d