pub type Binary<T> = Dary<2, T>;
A binary tree where each of the nodes might have at most 2 children.
struct Binary<T> { /* private fields */ }