byte_num/lib.rs
1#![cfg_attr(feature = "nightly", feature(test))]
2
3//! This crate provides functions to convert from and into bytes, in base 10.
4//! The functions are based on the fastware talks of Andrei Alexandrescu ([Talk](https://www.youtube.com/watch?v=o4-CwDo2zpg)).
5//!
6//! To convert from bytes, to integers, use the [`from_ascii`] module.
7//!
8//! To convert from integers, to bytes, use the [`into_ascii`] module.
9mod constants;
10pub mod error;
11pub mod from_ascii;
12pub mod into_ascii;