/// Marker for types that can represent machine epsilon.
/// Implementers must ensure an epsilon value is representable.
pubtraitHasEpsilon{}macro_rules!impl_has_epsilon_for_float{($($ty:ty),+$(,)?)=>{$(implHasEpsilon for$ty{})+};}impl_has_epsilon_for_float!(f32,f64);