(int index)
| 137 | } |
| 138 | |
| 139 | public void clear(int index) { |
| 140 | int pos = longPosition(index); |
| 141 | if (pos < bits.length) { |
| 142 | bits[pos] &= (MASK ^ bitPosition(index)); |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | public void clear(int start, int end) { |
| 147 | MaskInfoIterator iter = new MaskInfoIterator(start, end); |