[][src]Trait type_freak::control::IfLess

pub trait IfLess<Lhs, Rhs> {
    type Output;
}

Returns input type if Lhs is less than Rhs.

Associated Types

type Output

Loading content...

Implementors

impl<Lhs, Rhs, Output> IfLess<Lhs, Rhs> for Output where
    Lhs: IsLess<Rhs>,
    Output: IfPredicate<Le<Lhs, Rhs>>,
    Le<Lhs, Rhs>: Boolean
[src]

type Output = IfPredicateOutput<Output, Le<Lhs, Rhs>>

Loading content...