pub trait Decidable: Prop {
    fn decide() -> ExcM<Self>;
}
Expand description

Implemented by decidable types.

Required methods

Get excluded middle rule.

Implementors