Trait proptest::strategy::statics::FilterFn[][src]

pub trait FilterFn<T> {
    fn apply(&self, t: &T) -> bool;
}

Essentially Fn (&T) -> bool.

Required Methods

Test whether t passes the filter.

Implementors