1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![cfg_attr(feature = "nightly", feature(test))]

//! This crate provides function to convert from and into bytes, in base 10.
//! The functions are based on the fastware talks of Andrei Alexandrescu. (https://www.youtube.com/watch?v=o4-CwDo2zpg)
pub mod convert;

#[cfg(feature = "nightly")]
extern crate test;

#[cfg(test)]
mod tests;