Provides simple and useful macros to declare 'type checked' aliases for integers and floats.
``` rust
extern crate numalias; fn main() { floatalias!(Fval, f64); let a = Fval(5.0); let b = Fval(4.0); let c = (a * b).sqrt(); } ```