The parseInt() function parses a string argument and returns an integer of the specified radix (the base in mathematical numeral systems). If the radix value (coerced if necessary) is not in range [2, ...
This crate is intended to provide a fast and generic parseInt()-like implementation for Rust, which mostly follows the specification described in the MDN parseInt() documentation. parse_int() and ...