Construct a BigInt from another BigInt.
const(BigInt) b1 = BigInt("1_234_567_890"); BigInt b2 = BigInt(b1); assert(b2 == BigInt("1_234_567_890"));
See Implementation
Construct a BigInt from another BigInt.