MONC
|
List data structure which implements a doubly linked list. This list will preserve its order. More...
Private Attributes | |
type(listnode_type), pointer, private | head =>null() |
The head of the doubly linked list. More... | |
type(listnode_type), pointer, private | tail =>null() |
The tail of the doubly linked list. More... | |
integer, private | size =0 |
Number of elements in the list. More... | |
List data structure which implements a doubly linked list. This list will preserve its order.
Note that it holds a pointer (reference) to the data
Definition at line 60 of file collections.F90.
|
private |
The head of the doubly linked list.
Definition at line 61 of file collections.F90.
|
private |
Number of elements in the list.
Definition at line 64 of file collections.F90.
|
private |
The tail of the doubly linked list.
Definition at line 61 of file collections.F90.