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

remove
void remove()

Detaches the node from the list

Properties

value
T value [@property getter]

Retrieves the stored value

value
T value [@property setter]

Modifies the stored value

Meta