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

Method XOR

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

Source from the content-addressed store, hash-verified

350 }
351
352 cBitArray XOR(const cBitArray & array2) const {
353 assert(array_size == array2.array_size);
354 cBitArray out_array;
355 out_array.bit_array.XOR(bit_array, array2.bit_array, array_size);
356 out_array.array_size = array_size;
357 return out_array;
358 }
359
360 cBitArray EQU(const cBitArray & array2) const {
361 assert(array_size == array2.array_size);

Callers 1

cBitArrayClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected