Type Definition prop::Or[][src]

type Or<T, U> = Either<T, U>;

Logical OR.

Trait Implementations

impl<T, U> Decidable for Or<T, U> where
    T: Decidable,
    U: Decidable
[src]

fn decide() -> ExcM<Self>[src]

Get excluded middle rule.

impl<T, U> PBinOrd for Or<T, U>[src]

type Left = T

The left argument.

type Right = U

The right argument.