(&self)
| 425 | /// ``` |
| 426 | #[inline] |
| 427 | pub fn min(&self) -> Option<u8> { |
| 428 | if self.0 == T::from(0) { |
| 429 | None |
| 430 | } else { |
| 431 | Some(self.0.trailing_zeros()) |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | /// Return the largest number contained in the bitset or None if this bitset |
| 436 | /// is empty |