Assignment from another BigInt.
auto b1 = BigInt("123"); auto b2 = BigInt("456"); b2 = b1; assert(b2 == BigInt("123"));
See Implementation
Assignment from another BigInt.