BitArray.opXorAssign

Updates the contents of this array with the result of a bitwise xor operation between this array and the supplied array.

struct BitArray
opXorAssign
(
const(BitArray) rhs
)

Parameters

rhs const(BitArray)

The array with which to perform the bitwise xor operation.

In: rhs.length must equal the length of this array.

Return Value

Type: BitArray

A shallow copy of this array.

Meta