Module btoi

Source
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.

Licensed with compatible licenses MIT and Apache

Structs§

ParseIntegerError
An error that can occur when parsing an integer.

Traits§

MinNumTraits
minimal subset of traits used by to_signed_with_radix and to_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.