templateKeylessMethods(Node, alias eb_first, alias eb_last)
Node*
last
()
out (node)
{
if (this.length)
{
assert (node, typeof(this).stringof ~ ".last: got a null node but the tree is not empty");
}
else
{
assert (!node, typeof(this).stringof ~ ".last: got a node but the tree is empty");
}
}