All the bits from off (inclusive) and below set.
(off uint32)
| 93 | |
| 94 | // All the bits from off (inclusive) and below set. |
| 95 | func lowerMask(off uint32) uint64 { |
| 96 | return (uint64(1) << (off + 1)) - 1 |
| 97 | } |
| 98 | |
| 99 | func (b *BitArray) IsAnySet(i0, i1 int) bool { |
| 100 | return b.isAny( |