Expand description
library providing a fast float wrapper.
let mut f = FFloat::new(5.0);
f *= 7.0;
assert_eq!(*f, 35.0);Modules
- provides generic float traits. this is the best way to make a function possibly take a
FFloat.
library providing a fast float wrapper.
let mut f = FFloat::new(5.0);
f *= 7.0;
assert_eq!(*f, 35.0);FFloat.