Node

Node containing an element of type E.

struct Node (
E
uint N
) {}

Examples

struct X { string src; }
enum N = 4;
const e = X("alpha");
auto tree = GrowOnlyNaryTree!(X, N)(e);
assert(tree.root.value == e);

Meta