Support for operator -= for bit arrays.
a -= b for BitArrays means the same thing as a &= ~b.
See Implementation
Support for operator -= for bit arrays.
a -= b for BitArrays means the same thing as a &= ~b.