Copy the bits from one array into this array. This is not a shallow copy.
A BitArray with at least the same number of bits as this bit array.
A shallow copy of this array.
BitArray ba = [0,1,0,1,0]; BitArray ba2; ba2.length = ba.length; ba2[] = ba; // perform the copy ba[0] = true; assert(ba2[0] == false);
See Implementation
Copy the bits from one array into this array. This is not a shallow copy.