Create an immutable cursor for navigating this map. The cursor is initially positioned off the end of the map.
(
&'a self,
forest: &'a MapForest<K, V>,
comp: &'a C,
)
| 203 | /// |
| 204 | /// The cursor is initially positioned off the end of the map. |
| 205 | pub fn cursor<'a, C: Comparator<K>>( |
| 206 | &'a self, |
| 207 | forest: &'a MapForest<K, V>, |
| 208 | comp: &'a C, |
| 209 | ) -> MapCursor<'a, K, V, C> { |
| 210 | MapCursor::new(self, forest, comp) |
| 211 | } |
| 212 | |
| 213 | /// Create a mutable cursor for navigating this map. |
| 214 | /// |