ll_node Derived Type

type, public :: ll_node


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: ind = 0
type(ll_node), public, pointer :: next => null()

Source Code

    type ll_node
        integer :: ind = 0
        type(ll_node), pointer :: next => null()
    end type ll_node