Converts two integer types, throwing an exception if the given value is out of range for it.
Converts two integer types, returning the min/max of the desired type if the given value is out of range for it.
if radix is 0, guess from 0o, 0x, 0b prefixes.
Converts a string into the other given type. Throws on failure.
Converts any given value to a string. The format of the string is unspecified; it is meant for a human reader and might be overridden by types.
Truncates off bits that won't fit; equivalent to a built-in cast operation (you can just use a cast instead if you want).
if radix is 0, guess from 0o, 0x, 0b prefixes.
A simplified version of std.conv with better error messages and faster compiles for supported types.