(&self)
| 139 | /// Returns the number of elements in this set, excluding unknown bits. |
| 140 | #[inline(always)] |
| 141 | pub fn valid_len(&self) -> usize { |
| 142 | (self.repr & T::ALL_BITS).count_ones() as usize |
| 143 | } |
| 144 | |
| 145 | /// Returns whether this bitset contains any bits that do not correspond to a valid variant. |
| 146 | #[inline(always)] |
nothing calls this directly
no test coverage detected