bits | The initialization value. |
size_t newlen | The number of bits this array should contain. |
BitArray rhs | A BitArray with at least the same number of bits as this bit 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);
void[] target | The array to map. |
size_t numbits | The number of bits to map in target. |
int delegate(ref bool) dg | The supplied code as a delegate. |
const(BitArray) rhs | The array to compare against. |
const(BitArray) rhs | The array to compare against. |
size_t pos | The desired index position. |
const(BitArray) rhs | The array with which to perform the bitwise and operation. |
const(BitArray) rhs | The array with which to perform the bitwise or operation. |
const(BitArray) rhs | The array with which to perform the bitwise xor operation. |
const(BitArray) rhs | The array with which to perform the subtraction operation. |
bool rhs | The array with which to perform the concatenation operation. |
bool b | The new bit value to set. |
size_t pos | The desired index position. |
const(BitArray) rhs | The array with which to perform the bitwise and operation. |
const(BitArray) rhs | The array with which to perform the bitwise or operation. |
const(BitArray) rhs | The array with which to perform the bitwise xor operation. |
const(BitArray) rhs | The array with which to perform the subtraction operation. |
rhs | The array with which to perform the concatenation operation. |