Sets the i'th bit. No range checking needed.
StaticBitArray!2 bs; bs[0] = true; assert(bs[0]); assert(!bs[1]); bs[1] = true; assert(bs[1]);
See Implementation
Sets the i'th bit. No range checking needed.