Is this path pointing to the first entry in the tree? This corresponds to the smallest key.
(&self)
| 248 | /// Is this path pointing to the first entry in the tree? |
| 249 | /// This corresponds to the smallest key. |
| 250 | fn at_first_entry(&self) -> bool { |
| 251 | self.entry[0..self.size].iter().all(|&i| i == 0) |
| 252 | } |
| 253 | |
| 254 | /// Get a mutable reference to the current value. |
| 255 | /// This assumes that there is a current value. |