MCPcopy Create free account
hub / github.com/devosoft/avida / AND

Method AND

avida-core/source/tools/cBitArray.h:320–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

318 }
319
320 cBitArray AND(const cBitArray & array2) const {
321 assert(array_size == array2.array_size);
322 cBitArray out_array;
323 out_array.bit_array.AND(bit_array, array2.bit_array, array_size);
324 out_array.array_size = array_size;
325 return out_array;
326 }
327
328 cBitArray OR(const cBitArray & array2) const {
329 assert(array_size == array2.array_size);

Callers 1

cBitArrayClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected