(position int)
| 46 | } |
| 47 | |
| 48 | func (b *BitMap) Mark(position int) { |
| 49 | b.bits[position/8] |= BitUtil[position%8] |
| 50 | } |
| 51 | |
| 52 | func (b *BitMap) UnMark(position int) { |
| 53 | b.bits[position/8] &= UnmarkBitUtil[position%8] |
no outgoing calls
no test coverage detected