(position int)
| 54 | } |
| 55 | |
| 56 | func (b *BitMap) IsMarked(position int) bool { |
| 57 | return (b.bits[position/8] & BitUtil[position%8]) != 0 |
| 58 | } |
| 59 | |
| 60 | func (b *BitMap) IsAllUnmarked() bool { |
| 61 | for i := 0; i < b.size/8; i++ { |
no outgoing calls
no test coverage detected