1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// src/traits/real.rs : `Real` pub trait Real {} mod impl_for_built_ins { #![allow(non_snake_case)] use super::Real; impl Real for f32 { } impl Real for f64 { } } // ///////////////////////////// end of file //////////////////////////// //