lexical-parse-integer 0.8.5

Efficient parsing of integers from strings.
Documentation
1
2
3
4
5
6
7
#[cfg(feature = "power-of-two")]
use lexical_util::format::NumberFormatBuilder;

#[cfg(feature = "power-of-two")]
pub const fn from_radix(radix: u8) -> u128 {
    NumberFormatBuilder::from_radix(radix)
}