pub trait PreparedFilter {
    fn filter(&mut self, slots: Slice) -> Slice;
}
Expand description

The prepared version of a filter, which can hold borrows from the world

Required Methods

Filters a slice of entity slots and returns a subset of the slice

Implementations on Foreign Types

Implementors