pub trait SpecPred<Input> {
// Required method
spec fn spec_apply(&self, i: &Input) -> bool;
}Expand description
The spec version of Pred.
Required Methods§
Sourcespec fn spec_apply(&self, i: &Input) -> bool
spec fn spec_apply(&self, i: &Input) -> bool
Applies the predicate to the input.