DecimalView.fromStringImpl

struct DecimalView(W, WordEndian endian = TargetEndian, Exp = sizediff_t)
scope @trusted pure @nogc nothrow
static if(isMutable!W && W.sizeof >= 4)
bool
fromStringImpl
(
C
bool allowSpecialValues = true
bool allowDotOnBounds = true
bool allowDExponent = true
bool allowStartingPlus = true
bool allowUnderscores = true
bool allowLeadingZeros = true
bool allowExponent = true
bool checkEmpty = true
)
(
scope const(C)[] str
,,
int exponentShift = 0
)
if (
isSomeChar!C
)
if (
isUnsigned!W
)

Return Value

Type: bool

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

Meta