lexical-parse-integer 1.0.6

Efficient parsing of integers from strings.
Documentation
1
2
3
4
5
6
7
8
9
#![allow(dead_code, unused_imports)]

#[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)
}