Right shift all bits, fill 0 to the hollow
| 224 | |
| 225 | /// Right shift all bits, fill 0 to the hollow |
| 226 | void RightShift(size_t shift) |
| 227 | { |
| 228 | if (shift != 0) |
| 229 | DoRightShift(Words(), WordSize(), shift); |
| 230 | } |
| 231 | |
| 232 | /// Bitwise And with another bitmap, the two bitmap must be same size |
| 233 | void AndWith(const ThisType& rhs) |