Parses an `f64` from `s`.
(s: &str)
| 344 | |
| 345 | /// Parses an `f64` from `s`. |
| 346 | pub fn parse_float64(s: &str) -> Result<f64, ParseError> { |
| 347 | parse_float("double precision", s) |
| 348 | } |
| 349 | |
| 350 | /// Writes an `f64` to `buf`. |
| 351 | pub fn format_float64<F>(buf: &mut F, f: f64) -> Nestable |
no test coverage detected