(&self)
| 147 | /// Returns the number of elements in the set. |
| 148 | #[inline] |
| 149 | pub fn count(&self) -> usize { |
| 150 | self.storage.iter().map(|word| word.count_ones()).sum() |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | impl<T, W, const N: usize> IntoIterator for SmallEntitySet<T, W, N> |
nothing calls this directly
no test coverage detected