[go: up one dir, main page]

lexical-core 0.6.7

Lexical, to- and from-string conversion routines.
Documentation
//! 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.
perftools_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.
perftools_inline!{
pub(crate) fn double_decimal<'a>(d: f64, bytes: &'a mut [u8])
    -> usize
{
    unsafe {
        raw::format64(d, bytes.as_mut_ptr())
    }
}}