parseNoGC

A NoGC version of std.conv.parse for integer types.

Differences: overflow parameter - bool set to true if there was integer overflow. Asserts that at least one character was parsed instead of throwing an exception. The caller must validate the inputs before calling parseNoGC.

@safe pure nothrow @nogc
Target
parseNoGC
(
Target
Source
)
(
ref Source s
,
uint radix
,
out bool overflow
)
if (
isSomeChar!(ElementType!Source) &&
isIntegral!Target
&&
!is(Target == enum)
)

Meta