bitstring-trees 0.2.0

Trees based on bitstrings
Documentation
mod iter;
mod walk;

pub use self::iter::IterMutPath;

pub(in crate::tree) use self::{
	iter::{
		IterMutInOrder,
		IterMutLeaf,
		IterMutLeafFull,
		IterMutPostOrder,
		IterMutPreOrder,
		IterWalkMutPath,
	},
	walk::{
		Borrowed,
		Owned,
		WalkMut,
		WalkMutPath,
	},
};