[][src]Trait type_freak::control::IfElseLessOrEqual

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

Returns input type if Lhs is less than or equals to Rhs, otherwise returns Else.

Associated Types

type Output

Loading content...

Implementors

impl<Lhs, Rhs, Output, Else> IfElseLessOrEqual<Lhs, Rhs, Else> for Output where
    Lhs: IsLess<Rhs>,
    Output: IfElsePredicate<Le<Lhs, Rhs>, Else>,
    Le<Lhs, Rhs>: Boolean
[src]

type Output = IfElsePredicateOutput<Output, Le<Lhs, Rhs>, Else>

Loading content...