pub trait Irreflexivity: Pred {
    fn irrefl<A: Prop>(&self) -> Not<Self::Out<And<A, A>>>;
}
Expand description

Implemented for predicates with an irreflexivity property.

Required methods

∀ a { ¬p(a, a) }.

Implementors