(i uint16)
| 1090 | } |
| 1091 | |
| 1092 | func (bc *bitmapContainer) contains(i uint16) bool { // testbit |
| 1093 | x := uint(i) |
| 1094 | w := bc.bitmap[x>>6] |
| 1095 | mask := uint64(1) << (x & 63) |
| 1096 | return (w & mask) != 0 |
| 1097 | } |
| 1098 | |
| 1099 | func (bc *bitmapContainer) bitValue(i uint16) uint64 { |
| 1100 | x := uint(i) |
no outgoing calls
no test coverage detected