Home
last modified time | relevance | path

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

/third_party/rust/crates/proc-macro2/src/
Dwrapper.rs868 pub fn f32_unsuffixed(f: f32) -> Literal { in f32_unsuffixed() method
870 Literal::Compiler(proc_macro::Literal::f32_unsuffixed(f)) in f32_unsuffixed()
872 Literal::Fallback(fallback::Literal::f32_unsuffixed(f)) in f32_unsuffixed()
Dlib.rs1193 pub fn f32_unsuffixed(f: f32) -> Literal { in f32_unsuffixed() method
1195 Literal::_new(imp::Literal::f32_unsuffixed(f)) in f32_unsuffixed()
Dfallback.rs911 pub fn f32_unsuffixed(f: f32) -> Literal { in f32_unsuffixed() method
/third_party/rust/crates/proc-macro2/tests/
Dtest.rs195 assert_eq!(Literal::f32_unsuffixed(10.0).to_string(), "10.0"); in literal_float()