| 562 | } |
| 563 | |
| 564 | Y_FORCE_INLINE bool Get(size_t pos) const { |
| 565 | if ((pos >> DivCount) < Mask.GetChunkCapacity()) { |
| 566 | return Mask.Data[pos >> DivCount] & (static_cast<TChunk>(1) << (pos & ModMask)); |
| 567 | } |
| 568 | return false; |
| 569 | } |
| 570 | |
| 571 | template <class TTo> |
| 572 | void Export(size_t pos, TTo& to) const { |
no test coverage detected