Support for binary operator & for StaticBitArray.
const a = StaticBitArray!5([1,0,1,0,1]); auto b = StaticBitArray!5([1,0,1,1,0]); const c = a & b; auto d = StaticBitArray!5([1,0,1,0,0]); assert(c == d);
See Implementation
Support for binary operator & for StaticBitArray.