(slot uint32)
| 53 | } |
| 54 | |
| 55 | func (b Bits) IsSetDirect(slot uint32) bool { |
| 56 | return (b.bits[slot>>6] & (1 << (slot & 0x3f))) != 0 |
| 57 | } |
| 58 | |
| 59 | // Set causes the bit at position slot to become true on an allocated |
| 60 | // bitvector, where slot must be smaller than the length of the bit vector. |
no outgoing calls
no test coverage detected