(&self)
| 219 | /// slicing that may have occurred. |
| 220 | #[inline] |
| 221 | pub fn max_value(&self) -> usize { |
| 222 | self.values().last().copied().unwrap_or_default().as_usize() |
| 223 | } |
| 224 | |
| 225 | /// Performs a binary search to find the physical index for the given logical |
| 226 | /// index. |
no test coverage detected