bevy/crates/bevy_ecs/src/entity
Zeenobit f8e4b755ff Add EntityMap::iter() (#6935)
# Objective

There is currently no way to iterate over key/value pairs inside an `EntityMap`, which makes the usage of this struct very awkward. I couldn't think of a good reason why the `iter()` function should not be exposed, considering the interface already exposes `keys()` and `values()`, so I made this PR.

## Solution

Implement `iter()` for `EntityMap` in terms of its inner map type.
2022-12-16 20:14:13 +00:00
..
map_entities.rs Add EntityMap::iter() (#6935) 2022-12-16 20:14:13 +00:00
mod.rs Newtype ArchetypeRow and TableRow (#4878) 2022-12-06 01:38:21 +00:00