[][src]Trait fts_units::ops::Reduce

pub trait Reduce {
    type Output;
    fn reduce(self) -> Self::Output;
}

Helper to reduce Ratios to RatioZero when Exponent becomes zero

Associated Types

type Output

Loading content...

Required methods

fn reduce(self) -> Self::Output

Loading content...

Implementors

impl<R, E> Reduce for SIUnitsT<R, E> where
    R: SIRatios + ReduceWith<E>,
    E: SIExponents,
    ReduceWithOutput<R, E>: SIRatios,
    SIUnitsT<ReduceWithOutput<R, E>, E>: Default
[src]

type Output = SIUnitsT<ReduceWithOutput<R, E>, E>

Loading content...