Node

Linked list node

Members

Functions

getLast
Node!T getLast()

Gets the node previous in order

getNext
Node!T getNext()

Gets the node next in order

getValue
T getValue()

Retrieves the stored value

remove
void remove()

Detaches the node from the list

setValue
void setValue(T value)

Modifies the stored value

Meta