Writes an `f32` to `buf`.
(buf: &mut F, f: f32)
| 336 | |
| 337 | /// Writes an `f32` to `buf`. |
| 338 | pub fn format_float32<F>(buf: &mut F, f: f32) -> Nestable |
| 339 | where |
| 340 | F: FormatBuffer, |
| 341 | { |
| 342 | format_float(buf, f) |
| 343 | } |
| 344 | |
| 345 | /// Parses an `f64` from `s`. |
| 346 | pub fn parse_float64(s: &str) -> Result<f64, ParseError> { |
no test coverage detected