Bitwise Or with another bitmap, the two bitmap must be same size
| 238 | |
| 239 | /// Bitwise Or with another bitmap, the two bitmap must be same size |
| 240 | void OrWith(const ThisType& rhs) |
| 241 | { |
| 242 | assert(rhs.Size() == Size()); |
| 243 | DoOrWith(Words(), rhs.Words(), WordSize()); |
| 244 | } |
| 245 | |
| 246 | /// Bitwise Xor with another bitmap, the two bitmap must be same size |
| 247 | void XorWith(const ThisType& rhs) |