ListNode

linked node class

Constructors

this
this()
Undocumented in source.
this
this(T pvalue)
Undocumented in source.

Members

Functions

GetLastEntry
ListNode!T GetLastEntry()

gets the last entry in the list

InsertAfter
void InsertAfter(List!T pparent, T value)

inserts a value after this entry

InsertBefore
void InsertBefore(List!T pparent, T value)

inserts a value before this entry

opOpAssign
void opOpAssign(T pvalue)

appends the value to the end of the list

Variables

next
ListNode!T next;

value next to this entry

previous
ListNode!T previous;

value before this entry

value
T value;

value of this entry

Meta