Node containing an element of type E.
struct X { string src; } enum N = 4; const e = X("alpha"); auto tree = GrowOnlyNaryTree!(X, N)(e); assert(tree.root.value == e);
See Implementation
Node containing an element of type E.