Reverses the bits of the BitArray.
BitArray b; bool[5] data = [1,0,1,1,0]; b = BitArray(data); b.reverse; foreach (i; 0 .. data.length) assert(b[i] == data[4 - i]);
See Implementation
Reverses the bits of the BitArray.