Implements assignment operators from built-in integers of the form BigInt op= integer.
auto b = BigInt("1_000_000_000"); b += 12345; assert(b == BigInt("1_000_012_345")); b /= 5; assert(b == BigInt("200_002_469"));
See Implementation
Implements assignment operators from built-in integers of the form BigInt op= integer.