filter

Function filter 

Source
pub fn filter<F>(dataset: &DataSet, predicate: F) -> DataSet
where F: FnMut(&[Value]) -> bool,
Expand description

Returns a new DataSet containing only rows for which predicate returns true.

This is a convenience wrapper around DataSet::filter_rows.