[−][src]Trait specs::join::Join
The purpose of the Join trait is to provide a way
to access multiple storages at the same time with
the merged bit set.
Joining component storages means that you'll only get values where for a given entity every storage has an associated component.
Example
let mut world = World::new(); world.register::<Pos>(); world.register::<Vel>(); { let pos = world.read_storage::<Pos>(); let vel = world.read_storage::<Vel>(); // There are no entities yet, so no pair will be returned. let joined: Vec<_> = (&pos, &vel).join().collect(); assert_eq!(joined, vec![]); } world.create_entity().with(Pos).build(); { let pos = world.read_storage::<Pos>(); let vel = world.read_storage::<Vel>(); // Although there is an entity, it only has `Pos`. let joined: Vec<_> = (&pos, &vel).join().collect(); assert_eq!(joined, vec![]); } let ent = world.create_entity().with(Pos).with(Vel).build(); { let pos = world.read_storage::<Pos>(); let vel = world.read_storage::<Vel>(); // Now there is one entity that has both a `Vel` and a `Pos`. let joined: Vec<_> = (&pos, &vel).join().collect(); assert_eq!(joined, vec![(&Pos, &Vel)]); // If we want to get the entity the components are associated to, // we need to join over `Entities`: let entities = world.read_resource::<EntitiesRes>(); // note: `EntitiesRes` is the fetched resource; we get back // `Read<EntitiesRes>`. // `Read<EntitiesRes>` can also be referred to by `Entities` which // is a shorthand type definition to the former type. let joined: Vec<_> = (&entities, &pos, &vel).join().collect(); assert_eq!(joined, vec![(ent, &Pos, &Vel)]); }
Iterating over a single storage
Join can also be used to iterate over a single
storage, just by writing (&storage).join().
Associated Types
type Type
Type of joined components.
type Value
Type of joined storages.
type Mask: BitSetLike
Type of joined bit mask.
Required methods
unsafe fn open(self) -> (Self::Mask, Self::Value)
Open this join by returning the mask and the storages.
Safety
This is unsafe because implementations of this trait can permit
the Value to be mutated independently of the Mask.
If the Mask does not correctly report the status of the Value
then illegal memory access can occur.
unsafe fn get(value: &mut Self::Value, id: Index) -> Self::Type
Get a joined component value by a given index.
Safety
- A call to
getmust be preceded by a check ifidis part ofSelf::Mask - The implementation of this method may use unsafe code, but has no invariants to meet
Provided methods
ⓘImportant traits for JoinIter<J>fn join(self) -> JoinIter<Self> where
Self: Sized,
Self: Sized,
Create a joined iterator over the contents.
fn maybe(self) -> MaybeJoin<Self> where
Self: Sized,
Self: Sized,
Returns a Join-able structure that yields all indices, returning
None for all missing elements and Some(T) for found elements.
WARNING: Do not have a join of only MaybeJoins. Otherwise the join
will iterate over every single index of the bitset. If you want a
join with all MaybeJoins, add an EntitiesRes to the join as well
to bound the join to all entities that are alive.
struct ExampleSystem; impl<'a> System<'a> for ExampleSystem { type SystemData = ( WriteStorage<'a, Pos>, ReadStorage<'a, Vel>, ); fn run(&mut self, (mut positions, velocities): Self::SystemData) { for (mut position, maybe_velocity) in (&mut positions, velocities.maybe()).join() { if let Some(velocity) = maybe_velocity { position.x += velocity.x; position.y += velocity.y; } } } } fn main() { let mut world = World::new(); let mut dispatcher = DispatcherBuilder::new() .with(ExampleSystem, "example_system", &[]) .build(); dispatcher.setup(&mut world); let e1 = world.create_entity() .with(Pos { x: 0, y: 0 }) .with(Vel { x: 5, y: 2 }) .build(); let e2 = world.create_entity() .with(Pos { x: 0, y: 0 }) .build(); dispatcher.dispatch(&mut world); let positions = world.read_storage::<Pos>(); assert_eq!(positions.get(e1), Some(&Pos { x: 5, y: 2 })); assert_eq!(positions.get(e2), Some(&Pos { x: 0, y: 0 })); }
fn is_unconstrained() -> bool
If this Join typically returns all indices in the mask, then iterating
over only it or combined with other joins that are also dangerous
will cause the JoinIter/ParJoin to go through all indices which
is usually not what is wanted and will kill performance.
Implementations on Foreign Types
impl Join for AtomicBitSet[src]
type Type = Index
type Value = ()
type Mask = AtomicBitSet
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'a> Join for &'a AtomicBitSet[src]
type Type = Index
type Value = ()
type Mask = &'a AtomicBitSet
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<A> Join for BitSetNot<A> where
A: BitSetLike, [src]
A: BitSetLike,
type Type = Index
type Value = ()
type Mask = BitSetNot<A>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'a, A> Join for &'a BitSetNot<A> where
A: BitSetLike, [src]
A: BitSetLike,
type Type = Index
type Value = ()
type Mask = &'a BitSetNot<A>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<A, B> Join for BitSetAnd<A, B> where
A: BitSetLike,
B: BitSetLike, [src]
A: BitSetLike,
B: BitSetLike,
type Type = Index
type Value = ()
type Mask = BitSetAnd<A, B>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'a, A, B> Join for &'a BitSetAnd<A, B> where
A: BitSetLike,
B: BitSetLike, [src]
A: BitSetLike,
B: BitSetLike,
type Type = Index
type Value = ()
type Mask = &'a BitSetAnd<A, B>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<A, B> Join for BitSetOr<A, B> where
A: BitSetLike,
B: BitSetLike, [src]
A: BitSetLike,
B: BitSetLike,
type Type = Index
type Value = ()
type Mask = BitSetOr<A, B>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'a, A, B> Join for &'a BitSetOr<A, B> where
A: BitSetLike,
B: BitSetLike, [src]
A: BitSetLike,
B: BitSetLike,
type Type = Index
type Value = ()
type Mask = &'a BitSetOr<A, B>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<A, B> Join for BitSetXor<A, B> where
A: BitSetLike,
B: BitSetLike, [src]
A: BitSetLike,
B: BitSetLike,
type Type = Index
type Value = ()
type Mask = BitSetXor<A, B>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'a> Join for &'a dyn BitSetLike[src]
type Type = Index
type Value = ()
type Mask = &'a dyn BitSetLike
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<A> Join for (A,) where
A: Join,
(<A as Join>::Mask,): BitAnd, [src]
A: Join,
(<A as Join>::Mask,): BitAnd,
type Type = (A::Type,)
type Value = (A::Value,)
type Mask = <(A::Mask,) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B> Join for (A, B) where
A: Join,
B: Join,
(<A as Join>::Mask, <B as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
(<A as Join>::Mask, <B as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type)
type Value = (A::Value, B::Value)
type Mask = <(A::Mask, B::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C> Join for (A, B, C) where
A: Join,
B: Join,
C: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type)
type Value = (A::Value, B::Value, C::Value)
type Mask = <(A::Mask, B::Mask, C::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D> Join for (A, B, C, D) where
A: Join,
B: Join,
C: Join,
D: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type)
type Value = (A::Value, B::Value, C::Value, D::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E> Join for (A, B, C, D, E) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F> Join for (A, B, C, D, E, F) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G> Join for (A, B, C, D, E, F, G) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H> Join for (A, B, C, D, E, F, G, H) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I> Join for (A, B, C, D, E, F, G, H, I) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J> Join for (A, B, C, D, E, F, G, H, I, J) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J, K> Join for (A, B, C, D, E, F, G, H, I, J, K) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type, K::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value, K::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask, K::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J, K, L> Join for (A, B, C, D, E, F, G, H, I, J, K, L) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type, K::Type, L::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value, K::Value, L::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask, K::Mask, L::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Join for (A, B, C, D, E, F, G, H, I, J, K, L, M) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type, K::Type, L::Type, M::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value, K::Value, L::Value, M::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask, K::Mask, L::Mask, M::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> Join for (A, B, C, D, E, F, G, H, I, J, K, L, M, N) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type, K::Type, L::Type, M::Type, N::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value, K::Value, L::Value, M::Value, N::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask, K::Mask, L::Mask, M::Mask, N::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> Join for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
O: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask, <O as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
O: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask, <O as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type, K::Type, L::Type, M::Type, N::Type, O::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value, K::Value, L::Value, M::Value, N::Value, O::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask, K::Mask, L::Mask, M::Mask, N::Mask, O::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> Join for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
O: Join,
P: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask, <O as Join>::Mask, <P as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
O: Join,
P: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask, <O as Join>::Mask, <P as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type, K::Type, L::Type, M::Type, N::Type, O::Type, P::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value, K::Value, L::Value, M::Value, N::Value, O::Value, P::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask, K::Mask, L::Mask, M::Mask, N::Mask, O::Mask, P::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q> Join for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
O: Join,
P: Join,
Q: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask, <O as Join>::Mask, <P as Join>::Mask, <Q as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
O: Join,
P: Join,
Q: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask, <O as Join>::Mask, <P as Join>::Mask, <Q as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type, K::Type, L::Type, M::Type, N::Type, O::Type, P::Type, Q::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value, K::Value, L::Value, M::Value, N::Value, O::Value, P::Value, Q::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask, K::Mask, L::Mask, M::Mask, N::Mask, O::Mask, P::Mask, Q::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R> Join for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R) where
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
O: Join,
P: Join,
Q: Join,
R: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask, <O as Join>::Mask, <P as Join>::Mask, <Q as Join>::Mask, <R as Join>::Mask): BitAnd, [src]
A: Join,
B: Join,
C: Join,
D: Join,
E: Join,
F: Join,
G: Join,
H: Join,
I: Join,
J: Join,
K: Join,
L: Join,
M: Join,
N: Join,
O: Join,
P: Join,
Q: Join,
R: Join,
(<A as Join>::Mask, <B as Join>::Mask, <C as Join>::Mask, <D as Join>::Mask, <E as Join>::Mask, <F as Join>::Mask, <G as Join>::Mask, <H as Join>::Mask, <I as Join>::Mask, <J as Join>::Mask, <K as Join>::Mask, <L as Join>::Mask, <M as Join>::Mask, <N as Join>::Mask, <O as Join>::Mask, <P as Join>::Mask, <Q as Join>::Mask, <R as Join>::Mask): BitAnd,
type Type = (A::Type, B::Type, C::Type, D::Type, E::Type, F::Type, G::Type, H::Type, I::Type, J::Type, K::Type, L::Type, M::Type, N::Type, O::Type, P::Type, Q::Type, R::Type)
type Value = (A::Value, B::Value, C::Value, D::Value, E::Value, F::Value, G::Value, H::Value, I::Value, J::Value, K::Value, L::Value, M::Value, N::Value, O::Value, P::Value, Q::Value, R::Value)
type Mask = <(A::Mask, B::Mask, C::Mask, D::Mask, E::Mask, F::Mask, G::Mask, H::Mask, I::Mask, J::Mask, K::Mask, L::Mask, M::Mask, N::Mask, O::Mask, P::Mask, Q::Mask, R::Mask) as BitAnd>::Value
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<'a, 'b, T> Join for &'a Fetch<'b, T> where
&'a T: Join,
T: Resource, [src]
&'a T: Join,
T: Resource,
type Type = <&'a T as Join>::Type
type Value = <&'a T as Join>::Value
type Mask = <&'a T as Join>::Mask
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<'a, 'b, T> Join for &'a mut FetchMut<'b, T> where
&'a mut T: Join,
T: Resource, [src]
&'a mut T: Join,
T: Resource,
type Type = <&'a mut T as Join>::Type
type Value = <&'a mut T as Join>::Value
type Mask = <&'a mut T as Join>::Mask
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
Implementors
impl Join for BitSet[src]
type Type = Index
type Value = ()
type Mask = BitSet
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'a> Join for &'a BitSet[src]
type Type = Index
type Value = ()
type Mask = &'a BitSet
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(_: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'a> Join for &'a EntitiesRes[src]
type Mask = BitSetOr<&'a BitSet, &'a AtomicBitSet>
type Type = Entity
type Value = Self
unsafe fn open(self) -> (Self::Mask, Self)[src]
unsafe fn get(v: &mut &'a EntitiesRes, idx: Index) -> Entity[src]
impl<'a> Join for AntiStorage<'a>[src]
type Mask = BitSetNot<&'a BitSet>
type Type = ()
type Value = ()
unsafe fn open(self) -> (Self::Mask, ())[src]
unsafe fn get(_: &mut (), _: Index)[src]
impl<'a, 'b, T> Join for &'a Read<'b, T> where
&'a T: Join,
T: Resource, [src]
&'a T: Join,
T: Resource,
type Type = <&'a T as Join>::Type
type Value = <&'a T as Join>::Value
type Mask = <&'a T as Join>::Mask
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<'a, 'b, T> Join for &'a ReadExpect<'b, T> where
&'a T: Join,
T: Resource, [src]
&'a T: Join,
T: Resource,
type Type = <&'a T as Join>::Type
type Value = <&'a T as Join>::Value
type Mask = <&'a T as Join>::Mask
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<'a, 'b, T> Join for &'a mut Write<'b, T> where
&'a mut T: Join,
T: Resource, [src]
&'a mut T: Join,
T: Resource,
type Type = <&'a mut T as Join>::Type
type Value = <&'a mut T as Join>::Value
type Mask = <&'a mut T as Join>::Mask
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<'a, 'b, T> Join for &'a mut WriteExpect<'b, T> where
&'a mut T: Join,
T: Resource, [src]
&'a mut T: Join,
T: Resource,
type Type = <&'a mut T as Join>::Type
type Value = <&'a mut T as Join>::Value
type Mask = <&'a mut T as Join>::Mask
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<'a, 'b: 'a, T: 'a, D: 'a> Join for Entries<'a, 'b, T, D> where
T: Component,
D: Deref<Target = MaskedStorage<T>>, [src]
T: Component,
D: Deref<Target = MaskedStorage<T>>,
type Mask = BitSetAll
type Type = StorageEntry<'a, 'b, T, D>
type Value = &'a mut Storage<'b, T, D>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(value: &mut Self::Value, id: Index) -> Self::Type[src]
fn is_unconstrained() -> bool[src]
impl<'a, 'e, T, D> Join for &'a Storage<'e, T, D> where
T: Component,
D: Deref<Target = MaskedStorage<T>>, [src]
T: Component,
D: Deref<Target = MaskedStorage<T>>,
type Mask = &'a BitSet
type Type = &'a T
type Value = &'a T::Storage
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> &'a T[src]
impl<'a, 'e, T, D> Join for &'a mut Storage<'e, T, D> where
T: Component,
D: DerefMut<Target = MaskedStorage<T>>, [src]
T: Component,
D: DerefMut<Target = MaskedStorage<T>>,
type Mask = &'a BitSet
type Type = &'a mut T
type Value = &'a mut T::Storage
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, i: Index) -> &'a mut T[src]
impl<'a, T> Join for &'a ChangeSet<T>[src]
type Mask = &'a BitSet
type Type = &'a T
type Value = &'a DenseVecStorage<T>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(value: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'a, T> Join for &'a mut ChangeSet<T>[src]
type Mask = &'a BitSet
type Type = &'a mut T
type Value = &'a mut DenseVecStorage<T>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(v: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'rf, 'st: 'rf, C, S, B, Restrict> Join for &'rf RestrictedStorage<'rf, 'st, C, S, B, Restrict> where
C: Component,
S: Borrow<C::Storage>,
B: Borrow<BitSet>, [src]
C: Component,
S: Borrow<C::Storage>,
B: Borrow<BitSet>,
type Mask = &'rf BitSet
type Type = PairedStorage<'rf, 'st, C, &'rf C::Storage, &'rf BitSet, Restrict>
type Value = (&'rf C::Storage, &'rf Fetch<'st, EntitiesRes>, &'rf BitSet)
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(value: &mut Self::Value, id: Index) -> Self::Type[src]
impl<'rf, 'st: 'rf, C, S, B, Restrict> Join for &'rf mut RestrictedStorage<'rf, 'st, C, S, B, Restrict> where
C: Component,
S: BorrowMut<C::Storage>,
B: Borrow<BitSet>, [src]
C: Component,
S: BorrowMut<C::Storage>,
B: Borrow<BitSet>,
type Mask = &'rf BitSet
type Type = PairedStorage<'rf, 'st, C, &'rf mut C::Storage, &'rf BitSet, Restrict>
type Value = (&'rf mut C::Storage, &'rf Fetch<'st, EntitiesRes>, &'rf BitSet)
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(value: &mut Self::Value, id: Index) -> Self::Type[src]
impl<T> Join for ChangeSet<T>[src]
A Join implementation for ChangeSet that simply removes all the entries
on a call to get.
type Mask = BitSet
type Type = T
type Value = DenseVecStorage<T>
unsafe fn open(self) -> (Self::Mask, Self::Value)[src]
unsafe fn get(value: &mut Self::Value, id: Index) -> Self::Type[src]
impl<T> Join for MaybeJoin<T> where
T: Join, [src]
T: Join,