nxt.container.nary_tree

Undocumented in source.

Members

Aliases

GrowOnlyBinaryTree
alias GrowOnlyBinaryTree(E, Allocator = GCAllocator) = GrowOnlyNaryTree!(E, 2, Allocator)

Grow-only binary tree storing elements of type E.

GrowOnlyTernaryTree
alias GrowOnlyTernaryTree(E, Allocator = GCAllocator) = GrowOnlyNaryTree!(E, 3, Allocator)

Grow-only ternary tree storing elements of type E.

Structs

GrowOnlyNaryTree
struct GrowOnlyNaryTree(E, uint N, Allocator = GCAllocator)

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

Node
struct Node(E, uint N)

Node containing an element of type E.

Meta