| 71 | |
| 72 | #[derive(Clone, Debug, Hash, rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)] |
| 73 | pub struct Node<K, V> { |
| 74 | element: Element<K, V>, |
| 75 | max: K, |
| 76 | } |
| 77 | |
| 78 | /// A simple and generic implementation of an immutable interval tree. |
| 79 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected