(&self)
| 135 | V: rkyv::Archive, |
| 136 | { |
| 137 | fn todo(&self) -> TodoVec { |
| 138 | let mut todo = SmallVec::new(); |
| 139 | if !self.data.is_empty() { |
| 140 | todo.push((0, self.data.len())); |
| 141 | } |
| 142 | todo |
| 143 | } |
| 144 | |
| 145 | /// Queries the interval tree for all elements overlapping a given interval. |
| 146 | /// |
no outgoing calls
no test coverage detected