NumberContainer.this

Constructs a NumberContainer.

struct NumberContainer
pure @safe nothrow @nogc
this
(
BigInt val
,
BigInt ival = 0
,
long pow10 = 0
,
ulong precision = 18
)

Parameters

val BigInt

The real part of the NumberContainer, expressed as a BigInt.

ival BigInt

The imaginary part of the NumberContainer, expressed as a BigInt.

pow10 long

The power of 10 to multiply both parts by.

precision ulong

The digits of precision to use in divison and exponentiation operations.

Meta