pub type IterMut<'a, T> = Zip<Iter<'a, Entity>, IterMut<'a, T>>;
An iterator that yields entities and their components as mutable references.
pub struct IterMut<'a, T> { /* private fields */ }