ListMap.Node

Represenation of list node.

Members

Functions

hasKey
bool hasKey()

Tell whether this node is a key-value node.

key
auto key()

Key in key-value node.

next
inout(Node)* next()

Access next node in the list.

prev
inout(Node)* prev()

Access previous node in the list.

toEntry
auto toEntry()
value
inout(V) value()

Get stored value.

value
void value(V newValue)

Set stored value.

Meta