toInt
- bool toByte(T[] digits, byte value, uint radix)
- bool toUbyte(T[] digits, ubyte value, uint radix)
- bool toShort(T[] digits, short value, uint radix)
- bool toUshort(T[] digits, ushort value, uint radix)
- bool toInt(T[] digits, int value, uint radix)
- bool toUint(T[] digits, uint value, uint radix)
- bool toLong(T[] digits, long value, uint radix)
- bool toUlong(T[] digits, ulong value, uint radix)
Parse an integer value from the provided string.
The string is inspected for a sign and an optional radix prefix. A radix may be provided as an argument instead, whereupon it must match the prefix (where present). When radix is set to zero, conversion will default to decimal.