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§
- Parse
Integer Error - An error that can occur when parsing an integer.
Traits§
- MinNum
Traits - minimal subset of traits used by
to_signed_with_radix
andto_unsigned_with_radix
Functions§
- to_
signed - Converts a byte slice to an integer.
- to_
signed_ with_ radix - Converts a byte slice in a given base to an integer.
- to_
unsigned - Converts a byte slice to an integer. Signs are not allowed.
- to_
unsigned_ with_ radix - Converts a byte slice in a given base to an integer. Signs are not allowed.