GrowOnlyNaryTree

Grow-only N-ary tree storing elements of type E.

TODO: Complete. TODO: Default Allocator to a suitable default growth-only allocator.

struct GrowOnlyNaryTree (
E
uint N
Allocator = GCAllocator
) if (
N >= 2 &&
isAllocator!Allocator
) {}

Constructors

this
this(E rootValue)
Undocumented in source.

Members

Aliases

degree
alias degree = N
Undocumented in source.
top
alias top = root

Properties

root
inout(Node!(E, N)) root [@property getter]

See Also

Meta