tem_intList Derived Type

type, public :: tem_intList

linked list of integers


Contents

Source Code


Components

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

Source Code

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