Writes an `f64` to `buf`.
(buf: &mut F, f: f64)
| 349 | |
| 350 | /// Writes an `f64` to `buf`. |
| 351 | pub fn format_float64<F>(buf: &mut F, f: f64) -> Nestable |
| 352 | where |
| 353 | F: FormatBuffer, |
| 354 | { |
| 355 | format_float(buf, f) |
| 356 | } |
| 357 | |
| 358 | /// Use the following grammar to parse `s` into: |
| 359 | /// |
no test coverage detected