Move this cursor to the first element.
(&mut self)
| 278 | |
| 279 | /// Move this cursor to the first element. |
| 280 | pub fn goto_first(&mut self) -> Option<K> { |
| 281 | self.root.map(|root| self.path.first(root, self.pool).0) |
| 282 | } |
| 283 | |
| 284 | /// Try to insert `elem` into the set and leave the cursor at the inserted element. |
| 285 | /// |