(&self)
| 230 | /// Number of outlier entries, computed via popcnt of `outlier_bitmask`. |
| 231 | #[inline] |
| 232 | pub fn outlier_count(&self) -> u32 { |
| 233 | self.header().outlier_bitmask.count_ones() |
| 234 | } |
| 235 | |
| 236 | /// Return the outlier `(dim_index, value)` for the dimension at position |
| 237 | /// `slot` in the bitmask. |
nothing calls this directly
no test coverage detected