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

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

Essentially Fn (&T) -> bool.

Required Methods

Test whether t passes the filter.

Implementors