Trait legion::systems::QuerySet[][src]

pub trait QuerySet: Send + Sync {
    fn filter_archetypes(&mut self, world: &World, archetypes: &mut BitSet);
}
Expand description

Provides an abstraction across tuples of queries for system closures.

Required methods

Evaluates the queries and records which archetypes they require access to into a bitset.

Implementations on Foreign Types

Implementors