Home
last modified time | relevance | path

Searched refs:parse_lit_float (Results 1 – 1 of 1) sorted by relevance

/linux/rust/syn/
H A Dlit.rs511 let (digits, suffix) = match value::parse_lit_float(repr) { in new()
561 if let Some((digits, suffix)) = value::parse_lit_float(&repr) { in from()
923 let (digits, suffix) = value::parse_lit_float(&repr)?; in parse_negative_lit()
1194 if let Some((digits, suffix)) = parse_lit_float(&repr) { in new()
1772 pub(crate) fn parse_lit_float(input: &str) -> Option<(Box<str>, Box<str>)> { in parse_lit_float() function