1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*! # dimensioned **dimensioned** is a library for compile time type checking for arbitrary unit systems. For in depth tutorials, check [here](http://paholg.com/dimensioned). */ #![doc(html_logo_url = "http://paholg.com/dimensioned/imgs/favicon.png", html_favicon_url = "http://paholg.com/dimensioned/imgs/favicon.png", html_root_url = "http://paholg.com/dimensioned")] #![warn(missing_docs)] #![feature(optin_builtin_traits, zero_one, const_fn)] extern crate num; pub use dimensioned::*; pub mod peano; #[macro_use] pub mod dimensioned; #[macro_use] mod make_units; pub mod si; pub mod cgs;