GrowOnlyNaryTree

N-ary tree that cannot shrink but only grow (in breadth and depth).

Because of this a region allocator can be used for internal memory allocation.

Constructors

this
this(size_t regionSize)

Create with region size in bytes.

this
this(E e, size_t regionSize)
Undocumented in source.

Members

Aliases

N
alias N = Node!E
Undocumented in source.

Functions

root
inout(Node!E)* root()

See Also

Meta