MCPcopy Create free account
hub / github.com/chen3feng/toft / OrWith

Method OrWith

container/bitmap.h:240–244  ·  view source on GitHub ↗

Bitwise Or with another bitmap, the two bitmap must be same size

Source from the content-addressed store, hash-verified

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)

Callers 1

TESTFunction · 0.45

Calls 2

WordsMethod · 0.80
SizeMethod · 0.45

Tested by 1

TESTFunction · 0.36