redirect

/void append(T)(Node!T* node, T value) { / assert(node.empty, "Can only append to the last node. If you want to force this operation use redirect."); / node.payload = value; / node.next = new Node!T; /}

void
redirect
(
bool checkAtEnd = true
T
)

Meta