pub type Rounded<T> = Approximation<T, Rounding>;
Expand description
A type representing float operation result
If the operation result is inexact, the adjustment from the final rounding will be returned along with the result.
Aliased Type§
pub enum Rounded<T> {
Exact(T),
Inexact(T, Rounding),
}