[][src]Trait type_freak::control::IfElseGreaterOrEqual

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

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

Associated Types

type Output

Loading content...

Implementors

impl<Lhs, Rhs, Output, Else> IfElseGreaterOrEqual<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...