Type Definition prop::And[][src]

type And<T, U> = (T, U);

Logical AND.

Trait Implementations

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

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

Get excluded middle rule.

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

type Left = T

The left argument.

type Right = U

The right argument.