Trait rinecs::operators::TupleStorageEntities [−][src]
pub trait TupleStorageEntities<'a, 'r, U> { type Storage: StorageRef<'r>; fn iter(self) -> StorageIter<'r, Self::Storage>
where
U: ReadOnlyOp<'a>; fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>; fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter
where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage; fn iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesIterMut
where
E: IntoEntitiesIterator<'r, Self::Storage>; fn iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIter
where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage; fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut
where
E: IntoEntitiesIterator<'r, Self::Storage>; fn par_iter(self) -> ParStorageIter<'r, Self::Storage>; fn par_iter_for_entities<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIter
where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage; fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut
where
E: IntoEntitiesParIterator<'r, Self::Storage>; fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter
where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage; fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut
where
E: IntoEntitiesParIterator<'r, Self::Storage>; }
Associated Types
type Storage: StorageRef<'r>
[src]
Required methods
fn iter(self) -> StorageIter<'r, Self::Storage> where
U: ReadOnlyOp<'a>,
[src]
U: ReadOnlyOp<'a>,
fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
[src]
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_mut<E>(self, entities_iter: E) -> E::IntoEntitiesIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
fn iter_for_entities_opt<E>(self, entities_iter: E) -> E::IntoEntitiesOptIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
fn par_iter(self) -> ParStorageIter<'r, Self::Storage>
[src]
fn par_iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Implementations on Foreign Types
impl<'a, 'r, S1, U1, S2, U2> TupleStorageEntities<'a, 'r, (U1, U2)> for (S1, S2) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
[src]
impl<'a, 'r, S1, U1, S2, U2> TupleStorageEntities<'a, 'r, (U1, U2)> for (S1, S2) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
[src]type Storage = StorageRef2<'a, <S1 as StorageEntitiesExt<'a, U1>>::IntoStorage, <S2 as StorageEntitiesExt<'a, U2>>::IntoStorage>
fn iter(self) -> StorageIter<'r, Self::Storage>
[src]
fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
[src]
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_mut<E>(self, entities_iter: E) -> E::IntoEntitiesIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
fn iter_for_entities_opt<E>(self, entities_iter: E) -> E::IntoEntitiesOptIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
fn par_iter(self) -> ParStorageIter<'r, Self::Storage>
[src]
fn par_iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
impl<'a, 'r, S1, U1, S2, U2, S3, U3> TupleStorageEntities<'a, 'r, (U1, U2, U3)> for (S1, S2, S3) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
[src]
impl<'a, 'r, S1, U1, S2, U2, S3, U3> TupleStorageEntities<'a, 'r, (U1, U2, U3)> for (S1, S2, S3) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
[src]type Storage = StorageRef3<'a, <S1 as StorageEntitiesExt<'a, U1>>::IntoStorage, <S2 as StorageEntitiesExt<'a, U2>>::IntoStorage, <S3 as StorageEntitiesExt<'a, U3>>::IntoStorage>
fn iter(self) -> StorageIter<'r, Self::Storage>
[src]
fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
[src]
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_mut<E>(self, entities_iter: E) -> E::IntoEntitiesIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
fn iter_for_entities_opt<E>(self, entities_iter: E) -> E::IntoEntitiesOptIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
fn par_iter(self) -> ParStorageIter<'r, Self::Storage>
[src]
fn par_iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4)> for (S1, S2, S3, S4) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
[src]
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4)> for (S1, S2, S3, S4) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
[src]type Storage = StorageRef4<'a, <S1 as StorageEntitiesExt<'a, U1>>::IntoStorage, <S2 as StorageEntitiesExt<'a, U2>>::IntoStorage, <S3 as StorageEntitiesExt<'a, U3>>::IntoStorage, <S4 as StorageEntitiesExt<'a, U4>>::IntoStorage>
fn iter(self) -> StorageIter<'r, Self::Storage>
[src]
fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
[src]
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_mut<E>(self, entities_iter: E) -> E::IntoEntitiesIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
fn iter_for_entities_opt<E>(self, entities_iter: E) -> E::IntoEntitiesOptIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
fn par_iter(self) -> ParStorageIter<'r, Self::Storage>
[src]
fn par_iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4, S5, U5> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4, U5)> for (S1, S2, S3, S4, S5) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
U5: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
<U5 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
S5: StorageEntitiesExt<'a, U5> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
<S5 as StorageEntitiesExt<'a, U5>>::IntoStorage: StorageRef<'r>,
[src]
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4, S5, U5> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4, U5)> for (S1, S2, S3, S4, S5) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
U5: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
<U5 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
S5: StorageEntitiesExt<'a, U5> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
<S5 as StorageEntitiesExt<'a, U5>>::IntoStorage: StorageRef<'r>,
[src]type Storage = StorageRef5<'a, <S1 as StorageEntitiesExt<'a, U1>>::IntoStorage, <S2 as StorageEntitiesExt<'a, U2>>::IntoStorage, <S3 as StorageEntitiesExt<'a, U3>>::IntoStorage, <S4 as StorageEntitiesExt<'a, U4>>::IntoStorage, <S5 as StorageEntitiesExt<'a, U5>>::IntoStorage>
fn iter(self) -> StorageIter<'r, Self::Storage>
[src]
fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
[src]
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_mut<E>(self, entities_iter: E) -> E::IntoEntitiesIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
fn iter_for_entities_opt<E>(self, entities_iter: E) -> E::IntoEntitiesOptIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
fn par_iter(self) -> ParStorageIter<'r, Self::Storage>
[src]
fn par_iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4, S5, U5, S6, U6> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4, U5, U6)> for (S1, S2, S3, S4, S5, S6) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
U5: UnorderedData<'a> + 'r,
U6: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
<U5 as UnorderedData<'a>>::Storage: FastIndexExt,
<U6 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
S5: StorageEntitiesExt<'a, U5> + 'r,
S6: StorageEntitiesExt<'a, U6> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
<S5 as StorageEntitiesExt<'a, U5>>::IntoStorage: StorageRef<'r>,
<S6 as StorageEntitiesExt<'a, U6>>::IntoStorage: StorageRef<'r>,
[src]
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4, S5, U5, S6, U6> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4, U5, U6)> for (S1, S2, S3, S4, S5, S6) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
U5: UnorderedData<'a> + 'r,
U6: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
<U5 as UnorderedData<'a>>::Storage: FastIndexExt,
<U6 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
S5: StorageEntitiesExt<'a, U5> + 'r,
S6: StorageEntitiesExt<'a, U6> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
<S5 as StorageEntitiesExt<'a, U5>>::IntoStorage: StorageRef<'r>,
<S6 as StorageEntitiesExt<'a, U6>>::IntoStorage: StorageRef<'r>,
[src]type Storage = StorageRef6<'a, <S1 as StorageEntitiesExt<'a, U1>>::IntoStorage, <S2 as StorageEntitiesExt<'a, U2>>::IntoStorage, <S3 as StorageEntitiesExt<'a, U3>>::IntoStorage, <S4 as StorageEntitiesExt<'a, U4>>::IntoStorage, <S5 as StorageEntitiesExt<'a, U5>>::IntoStorage, <S6 as StorageEntitiesExt<'a, U6>>::IntoStorage>
fn iter(self) -> StorageIter<'r, Self::Storage>
[src]
fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
[src]
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_mut<E>(self, entities_iter: E) -> E::IntoEntitiesIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
fn iter_for_entities_opt<E>(self, entities_iter: E) -> E::IntoEntitiesOptIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
fn par_iter(self) -> ParStorageIter<'r, Self::Storage>
[src]
fn par_iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4, S5, U5, S6, U6, S7, U7> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4, U5, U6, U7)> for (S1, S2, S3, S4, S5, S6, S7) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
U5: UnorderedData<'a> + 'r,
U6: UnorderedData<'a> + 'r,
U7: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
<U5 as UnorderedData<'a>>::Storage: FastIndexExt,
<U6 as UnorderedData<'a>>::Storage: FastIndexExt,
<U7 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
S5: StorageEntitiesExt<'a, U5> + 'r,
S6: StorageEntitiesExt<'a, U6> + 'r,
S7: StorageEntitiesExt<'a, U7> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
<S5 as StorageEntitiesExt<'a, U5>>::IntoStorage: StorageRef<'r>,
<S6 as StorageEntitiesExt<'a, U6>>::IntoStorage: StorageRef<'r>,
<S7 as StorageEntitiesExt<'a, U7>>::IntoStorage: StorageRef<'r>,
[src]
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4, S5, U5, S6, U6, S7, U7> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4, U5, U6, U7)> for (S1, S2, S3, S4, S5, S6, S7) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
U5: UnorderedData<'a> + 'r,
U6: UnorderedData<'a> + 'r,
U7: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
<U5 as UnorderedData<'a>>::Storage: FastIndexExt,
<U6 as UnorderedData<'a>>::Storage: FastIndexExt,
<U7 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
S5: StorageEntitiesExt<'a, U5> + 'r,
S6: StorageEntitiesExt<'a, U6> + 'r,
S7: StorageEntitiesExt<'a, U7> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
<S5 as StorageEntitiesExt<'a, U5>>::IntoStorage: StorageRef<'r>,
<S6 as StorageEntitiesExt<'a, U6>>::IntoStorage: StorageRef<'r>,
<S7 as StorageEntitiesExt<'a, U7>>::IntoStorage: StorageRef<'r>,
[src]type Storage = StorageRef7<'a, <S1 as StorageEntitiesExt<'a, U1>>::IntoStorage, <S2 as StorageEntitiesExt<'a, U2>>::IntoStorage, <S3 as StorageEntitiesExt<'a, U3>>::IntoStorage, <S4 as StorageEntitiesExt<'a, U4>>::IntoStorage, <S5 as StorageEntitiesExt<'a, U5>>::IntoStorage, <S6 as StorageEntitiesExt<'a, U6>>::IntoStorage, <S7 as StorageEntitiesExt<'a, U7>>::IntoStorage>
fn iter(self) -> StorageIter<'r, Self::Storage>
[src]
fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
[src]
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_mut<E>(self, entities_iter: E) -> E::IntoEntitiesIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
fn iter_for_entities_opt<E>(self, entities_iter: E) -> E::IntoEntitiesOptIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
fn par_iter(self) -> ParStorageIter<'r, Self::Storage>
[src]
fn par_iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4, S5, U5, S6, U6, S7, U7, S8, U8> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4, U5, U6, U7, U8)> for (S1, S2, S3, S4, S5, S6, S7, S8) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
U5: UnorderedData<'a> + 'r,
U6: UnorderedData<'a> + 'r,
U7: UnorderedData<'a> + 'r,
U8: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
<U5 as UnorderedData<'a>>::Storage: FastIndexExt,
<U6 as UnorderedData<'a>>::Storage: FastIndexExt,
<U7 as UnorderedData<'a>>::Storage: FastIndexExt,
<U8 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
S5: StorageEntitiesExt<'a, U5> + 'r,
S6: StorageEntitiesExt<'a, U6> + 'r,
S7: StorageEntitiesExt<'a, U7> + 'r,
S8: StorageEntitiesExt<'a, U8> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
<S5 as StorageEntitiesExt<'a, U5>>::IntoStorage: StorageRef<'r>,
<S6 as StorageEntitiesExt<'a, U6>>::IntoStorage: StorageRef<'r>,
<S7 as StorageEntitiesExt<'a, U7>>::IntoStorage: StorageRef<'r>,
<S8 as StorageEntitiesExt<'a, U8>>::IntoStorage: StorageRef<'r>,
[src]
impl<'a, 'r, S1, U1, S2, U2, S3, U3, S4, U4, S5, U5, S6, U6, S7, U7, S8, U8> TupleStorageEntities<'a, 'r, (U1, U2, U3, U4, U5, U6, U7, U8)> for (S1, S2, S3, S4, S5, S6, S7, S8) where
'a: 'r,
U1: UnorderedData<'a> + 'r,
U2: UnorderedData<'a> + 'r,
U3: UnorderedData<'a> + 'r,
U4: UnorderedData<'a> + 'r,
U5: UnorderedData<'a> + 'r,
U6: UnorderedData<'a> + 'r,
U7: UnorderedData<'a> + 'r,
U8: UnorderedData<'a> + 'r,
<U1 as UnorderedData<'a>>::Storage: FastIndexExt,
<U2 as UnorderedData<'a>>::Storage: FastIndexExt,
<U3 as UnorderedData<'a>>::Storage: FastIndexExt,
<U4 as UnorderedData<'a>>::Storage: FastIndexExt,
<U5 as UnorderedData<'a>>::Storage: FastIndexExt,
<U6 as UnorderedData<'a>>::Storage: FastIndexExt,
<U7 as UnorderedData<'a>>::Storage: FastIndexExt,
<U8 as UnorderedData<'a>>::Storage: FastIndexExt,
S1: StorageEntitiesExt<'a, U1> + 'r,
S2: StorageEntitiesExt<'a, U2> + 'r,
S3: StorageEntitiesExt<'a, U3> + 'r,
S4: StorageEntitiesExt<'a, U4> + 'r,
S5: StorageEntitiesExt<'a, U5> + 'r,
S6: StorageEntitiesExt<'a, U6> + 'r,
S7: StorageEntitiesExt<'a, U7> + 'r,
S8: StorageEntitiesExt<'a, U8> + 'r,
<S1 as StorageEntitiesExt<'a, U1>>::IntoStorage: StorageRef<'r>,
<S2 as StorageEntitiesExt<'a, U2>>::IntoStorage: StorageRef<'r>,
<S3 as StorageEntitiesExt<'a, U3>>::IntoStorage: StorageRef<'r>,
<S4 as StorageEntitiesExt<'a, U4>>::IntoStorage: StorageRef<'r>,
<S5 as StorageEntitiesExt<'a, U5>>::IntoStorage: StorageRef<'r>,
<S6 as StorageEntitiesExt<'a, U6>>::IntoStorage: StorageRef<'r>,
<S7 as StorageEntitiesExt<'a, U7>>::IntoStorage: StorageRef<'r>,
<S8 as StorageEntitiesExt<'a, U8>>::IntoStorage: StorageRef<'r>,
[src]type Storage = StorageRef8<'a, <S1 as StorageEntitiesExt<'a, U1>>::IntoStorage, <S2 as StorageEntitiesExt<'a, U2>>::IntoStorage, <S3 as StorageEntitiesExt<'a, U3>>::IntoStorage, <S4 as StorageEntitiesExt<'a, U4>>::IntoStorage, <S5 as StorageEntitiesExt<'a, U5>>::IntoStorage, <S6 as StorageEntitiesExt<'a, U6>>::IntoStorage, <S7 as StorageEntitiesExt<'a, U7>>::IntoStorage, <S8 as StorageEntitiesExt<'a, U8>>::IntoStorage>
fn iter(self) -> StorageIter<'r, Self::Storage>
[src]
fn iter_mut(
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
[src]
self
) -> StorageIterMut<'r, Self::Storage, <Self::Storage as StorageRef<'r>>::Component>
fn iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_mut<E>(self, entities_iter: E) -> E::IntoEntitiesIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
fn iter_for_entities_opt<E>(self, entities_iter: E) -> E::IntoEntitiesOptIter where
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptIterMut where
E: IntoEntitiesIterator<'r, Self::Storage>,
fn par_iter(self) -> ParStorageIter<'r, Self::Storage>
[src]
fn par_iter_for_entities<E>(self, entities_iter: E) -> E::IntoEntitiesParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
fn par_iter_for_entities_opt<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIter where
E: IntoEntitiesParIterator<'r, Self::Storage>,
Self::Storage: ReadOnlyStorage,
fn par_iter_for_entities_opt_mut<E>(
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,
[src]
self,
entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
E: IntoEntitiesParIterator<'r, Self::Storage>,