1 2 3 4 5 6 7 8 9
pub trait Float {} macro_rules! impl_float { ($($t:ident),*) => { $(impl Float for $t {})* }; } impl_float!(f32, f64);