pub fn try_atof64_slice(bytes: &[u8]) -> Result<f64>
Expand description

Checked parser for a string-to-number conversion using Rust slices.

Returns a C-compatible result containing the parsed value, and an error container any errors that occurred during parser.

Numeric overflow takes precedence over the presence of an invalid digit, and therefore may mask an invalid digit error.

  • bytes - Slice containing a numeric string.