int64_vec Derived Type

type, public :: int64_vec

an type that contains an allocatable ip array. so we can have an array of these.


Components

Type Visibility Attributes Name Initial
integer(kind=ip), public, dimension(:), allocatable :: vals

Source Code

    type,public :: int64_vec
        !! an type that contains an allocatable ip array.
        !! so we can have an array of these.
        integer(ip),dimension(:),allocatable :: vals
    end type int64_vec