(&mut self)
| 398 | /// ``` |
| 399 | #[inline] |
| 400 | pub fn pop_max(&mut self) -> Option<u8> { |
| 401 | let max = self.max()?; |
| 402 | self.remove(max); |
| 403 | Some(max) |
| 404 | } |
| 405 | |
| 406 | /// Return the smallest number contained in this bitset or `None` if this |
| 407 | /// bitset is empty. |