Function rocket::mtls::x509::der_parser::asn1_rs::nom::number::complete::float

source ·
pub fn float<T, E>(input: T) -> Result<(T, f32), Err<E>>
Available on crate feature mtls only.
Expand description

Recognizes floating point number in text format and returns a f32.

Complete version: Can parse until the end of input.

use nom::number::complete::float;

let parser = |s| {
  float(s)
};

assert_eq!(parser("11e-1"), Ok(("", 1.1)));
assert_eq!(parser("123E-02"), Ok(("", 1.23)));
assert_eq!(parser("123K-01"), Ok(("K-01", 123.0)));
assert_eq!(parser("abc"), Err(Err::Error(("abc", ErrorKind::Float))));