Parses an `f32` from `s`.
(s: &str)
| 331 | |
| 332 | /// Parses an `f32` from `s`. |
| 333 | pub fn parse_float32(s: &str) -> Result<f32, ParseError> { |
| 334 | parse_float("real", s) |
| 335 | } |
| 336 | |
| 337 | /// Writes an `f32` to `buf`. |
| 338 | pub fn format_float32<F>(buf: &mut F, f: f32) -> Nestable |
no test coverage detected