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

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

A type operator that checks if left-hand-site is less than right-hand-side.

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...