| 644 | } |
| 645 | |
| 646 | bool HasAny(const TThis& bitmap) const { |
| 647 | for (size_t i = 0; i < Min(Mask.GetChunkCapacity(), bitmap.Mask.GetChunkCapacity()); ++i) { |
| 648 | if (0 != (Mask.Data[i] & bitmap.Mask.Data[i])) { |
| 649 | return true; |
| 650 | } |
| 651 | } |
| 652 | return false; |
| 653 | } |
| 654 | |
| 655 | template <class T> |
| 656 | Y_FORCE_INLINE bool HasAny(const TBitMapOps<T>& bitmap) const { |
nothing calls this directly
no test coverage detected