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.

struct GrowOnlyNaryTree (
E
) {}

Constructors

this
this(size_t regionSize)

Create with region size in bytes.

Members

Functions

root
inout(Node!E)* root()

See Also

Meta