Expand description
A module with utilities to turn byte slices with decimal numbers back into their binary representation.
§Credits
This module was ported from https://github.com/niklasf/rust-btoi version 0.4.3
see https://github.com/GitoxideLabs/gitoxide/issues/729 for how it came to be in order
to save 2.2 seconds of per-core compile time by not compiling the num-traits
crate
anymore.
Structs§
- An error that can occur when parsing an integer.
Traits§
- minimal subset of traits used by
to_signed_with_radix
andto_unsigned_with_radix
Functions§
- Converts a byte slice to an integer.
- Converts a byte slice in a given base to an integer.
- Converts a byte slice to an integer. Signs are not allowed.
- Converts a byte slice in a given base to an integer. Signs are not allowed.