tem_longList Derived Type

type, public :: tem_longList

linked list of long integers


Components

Type Visibility Attributes Name Initial
integer(kind=long_k), public :: elem
type(tem_longList), public, pointer :: next => null()

Source Code

  type tem_longList
    integer(kind=long_k) :: elem !< Position of Element in TreeIDlist
    type(tem_longList), pointer :: next => null()
  endType tem_longList