Construct from a decimal string. The conversion follows the same rules as std.conv.to converting a string to the wrapped T type.
an input range of characters
std.conv.to can convert a string to a Checked!T:
import std.conv : to; const a = to!long("1234"); const b = to!(Checked!long)("1234"); assert(a == b);
See Implementation
Construct from a decimal string. The conversion follows the same rules as std.conv.to converting a string to the wrapped T type.