Implements binary operators between BigInt
auto b1 = BigFixed(1, 10); assert((b1 | (BigInt(1) << 9)).toDecimalString(2) == "1.50"); assert((b1 & (BigInt(1) << 9)).toDecimalString(2) == "0.00"); assert((b1 ^ (BigInt(1) << 9)).toDecimalString(2) == "1.50");
See Implementation
Implements binary operators between BigInt