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 29 30 31 32 33 34
//! Wrapper around David Tolnay's ryu. use ryu::raw; use util::*; // F32 /// Wrapper for ryu. /// /// `f` must be non-special (NaN or infinite), non-negative, /// and non-zero. #[inline] pub(crate) fn float_decimal<'a>(f: f32, bytes: &'a mut [u8]) -> usize { unsafe { raw::format32(f, bytes.as_mut_ptr()) } } // F64 /// Wrapper for ryu. /// /// `d` must be non-special (NaN or infinite), non-negative, /// and non-zero. #[inline] pub(crate) fn double_decimal<'a>(d: f64, bytes: &'a mut [u8]) -> usize { unsafe { raw::format64(d, bytes.as_mut_ptr()) } }