/// Trait for approximate a value to the closest.
pubtraitApprox{/// Approximates the value.
fnapprox(&self)->Self;/// Approximates the value by the specified delta.
fnapprox_by(&self, delta:&Self)->Self;}/// Trait for check if 2 values are equals using the specified delta.
pubtraitApproxEq{/// Checks if the two values are equals using the given delta.
fnapprox_eq(&self, other:&Self, delta:&Self)->bool;}