(&self)
| 153 | #[inline] |
| 154 | #[must_use] |
| 155 | pub fn count(&self) -> usize { |
| 156 | self.storage |
| 157 | .iter() |
| 158 | .map(|word| word.count_ones() as usize) |
| 159 | .sum() |
| 160 | } |
| 161 | |
| 162 | /// Returns the next entity starting from `from` that is present in the set. |
| 163 | #[inline] |
no test coverage detected