Implements casting to/from qualified BigInt's.
Warning: Casting to/from const or immutable may break type system guarantees. Use with care.
const(BigInt) x = BigInt("123"); BigInt y = cast() x; // cast away const assert(y == x);
See Implementation
Implements casting to/from qualified BigInt's.
Warning: Casting to/from const or immutable may break type system guarantees. Use with care.