Implements assignment operators of the form BigInt op= BigInt.
auto x = BigInt("123"); auto y = BigInt("321"); x += y; assert(x == BigInt("444"));
See Implementation
Implements assignment operators of the form BigInt op= BigInt.