Consume this map and its forest, yielding `(K, V)` pairs from the map.
(self, forest: MapForest<K, V>)
| 232 | |
| 233 | /// Consume this map and its forest, yielding `(K, V)` pairs from the map. |
| 234 | pub fn into_iter(self, forest: MapForest<K, V>) -> MapIntoIter<K, V> { |
| 235 | MapIntoIter { |
| 236 | root: self.root, |
| 237 | pool: forest.nodes, |
| 238 | path: Path::default(), |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | /// Iterate over the entries within the given range. |
| 243 | pub fn range<'a, R, C>( |
no outgoing calls