Iterator over all the keys and values of an entity map.
| 50 | |
| 51 | /// Iterator over all the keys and values of an entity map. |
| 52 | pub struct Iter<'a, K: EntityRef, V> { |
| 53 | enumerate: Enumerate<slice::Iter<'a, V>>, |
| 54 | marker: PhantomData<K>, |
| 55 | } |
| 56 | |
| 57 | impl<'a, K: EntityRef, V> Iter<'a, K, V> { |
| 58 | /// Create an `Iter` iterator that visits the keys and values of `iter`. |
nothing calls this directly
no outgoing calls
no test coverage detected