Lines Matching defs:BigInt
48 struct BigInt struct
55 * Construct a `BigInt` from a decimal or hexadecimal string. The number must argument
80 bool neg = false;
81 bool ok;
135 auto big1 = BigInt(r1); argument
139 auto big2 = BigInt(r2); argument
143 auto big3 = BigInt(r3); argument
147 assertThrown!ConvException(BigInt(r4)); argument
177 auto b1 = BigInt(false, magnitude); argument
179 auto b2 = BigInt(true, magnitude); argument
194 auto bigData = BigInt(data); argument
207 const(BigInt) b1 = BigInt("1_234_567_890"); member
208 BigInt b2 = BigInt(b1); argument
223 auto b = BigInt("123"); argument
239 auto b1 = BigInt("123"); argument
240 auto b2 = BigInt("456"); argument
1472 assert(!isZero(), "BigInt division by zero"); in checkDivByZero() argument
1989 void foo(BigInt) {} in foo() argument