BigInt.fromStringImpl

struct BigInt(size_t maxSize64)
scope @trusted pure @nogc nothrow
bool
fromStringImpl
(
C
)
(
scope const(C)[] str
)
if (
isSomeChar!C
)
if (
maxSize64 &&
maxSize64 <= ushort.max
)

Return Value

Type: bool

false in case of overflow or incorrect string. Precondition: non-empty coefficients.

Meta