pub trait NoOtherQ<A, B>: 'static + Clone {
    fn no_other_q<C: Prop>(&self, q: Q<A, C>) -> Not<Not<Q<B, C>>>;
}
Expand description

Prevents other qualities of A from excluding B.

Required methods

(a ~~ c) => ¬¬(b ~~ c).

Implementors