| 621 | } |
| 622 | |
| 623 | Y_FORCE_INLINE void Reserve(size_t bitCount) { |
| 624 | Y_ABORT_UNLESS(Mask.ExpandBitSize(bitCount), "Exceeding bitmap storage capacity"); |
| 625 | } |
| 626 | |
| 627 | Y_FORCE_INLINE size_t ValueBitCount() const { |
| 628 | size_t nonZeroChunk = Mask.GetChunkCapacity() - 1; |
nothing calls this directly
no test coverage detected