(&self)
| 454 | /// ``` |
| 455 | #[inline] |
| 456 | pub fn max(&self) -> Option<u8> { |
| 457 | if self.0 == T::from(0) { |
| 458 | None |
| 459 | } else { |
| 460 | let leading_zeroes = self.0.leading_zeros(); |
| 461 | Some(Self::capacity() - leading_zeroes - 1) |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | /// Iterate over the items in this set. |
| 466 | /// |
no test coverage detected