MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / parse_float64

Function parse_float64

src/repr/src/strconv.rs:346–348  ·  view source on GitHub ↗

Parses an `f64` from `s`.

(s: &str)

Source from the content-addressed store, hash-verified

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

Callers 4

cast_string_to_float64Function · 0.85
decode_textMethod · 0.85
decode_text_into_rowMethod · 0.85
evalMethod · 0.85

Calls 1

parse_floatFunction · 0.85

Tested by

no test coverage detected