BigUIntView.fromStringImpl

struct BigUIntView(W, WordEndian endian = TargetEndian)
scope @trusted pure @nogc nothrow
static if(isMutable!W && W.sizeof >= 4)
bool
fromStringImpl
(
C
)
(
scope const(C)[] str
)
if (
isSomeChar!C
)
if (
__traits(isUnsigned, W)
)

Return Value

Type: bool

false in case of overflow or incorrect string. Precondition: non-empty coefficients Note: doesn't support signs.

Meta