[−][src]Type Definition charcoal::binary_tree::VecBinaryTree
type VecBinaryTree<B, L = B> = BinaryTree<B, L, usize, Vec<Node<B, L, usize>>>;
This is supported on crate features
binary_tree
and alloc
only.A binary tree which uses a Vec
as backing storage.
The default BinaryTree
type uses Vec
with sparse storage. Not using sparse storage is heavily discouraged, as the memory usage penalty is negligible. Still, this is provided for convenience.