1use super::Word;
23/// Representation of a node with two children used for iterating over containers.
4#[derive(Debug, Clone, PartialEq, Eq)]
5#[cfg_attr(test, derive(PartialOrd, Ord))]
6pub struct InnerNodeInfo {
7pub value: Word,
8pub left: Word,
9pub right: Word,
10}