The OpenD Programming Language

UInt.fromStringImpl

struct UInt(size_t size)
scope @trusted pure @nogc nothrow
bool
fromStringImpl
(
C
)
(
scope const(C)[] str
)
if (
size % (size_t.sizeof * 8) == 0 &&
size >= size_t.sizeof * 8
)

Return Value

Type: bool

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

Meta