(left: Self, right: Self)
| 97 | /// Combine two existing subtrees into a new free-form node in O(1). |
| 98 | #[inline] |
| 99 | pub fn join(left: Self, right: Self) -> Self { |
| 100 | AssumptionTree::Node(Box::new(left), Box::new(right)) |
| 101 | } |
| 102 | |
| 103 | // ---- Queries ---- |
| 104 |