bevy/crates/bevy_ecs/src/system
Christian Hughes ee2487a6e2
Change World::inspect_entity to return an Iterator instead of Vec (#13934)
# Objective

Fixes #13933.

## Solution

Changed the return type.

## Testing

Fixed and reused the pre-existing tests for `inspect_entity`.

---

## Migration Guide

- `World::inspect_entity` now returns an `Iterator` instead of a `Vec`.
If you need a `Vec`, immediately collect the iterator:
`world.inspect_entity(entity).collect<Vec<_>>()`
2024-06-19 21:06:35 +00:00
..
commands Change World::inspect_entity to return an Iterator instead of Vec (#13934) 2024-06-19 21:06:35 +00:00
adapter_system.rs Generalised ECS reactivity with Observers (#10839) 2024-06-15 01:33:26 +00:00
builder.rs Implement a SystemBuilder for building SystemParams (#13123) 2024-05-22 00:58:37 +00:00
combinator.rs Generalised ECS reactivity with Observers (#10839) 2024-06-15 01:33:26 +00:00
exclusive_function_system.rs Generalised ECS reactivity with Observers (#10839) 2024-06-15 01:33:26 +00:00
exclusive_system_param.rs Add on_unimplemented Diagnostics to Most Public Traits (#13347) (#13662) 2024-06-04 00:31:34 +00:00
function_system.rs Generalised ECS reactivity with Observers (#10839) 2024-06-15 01:33:26 +00:00
mod.rs Generalised ECS reactivity with Observers (#10839) 2024-06-15 01:33:26 +00:00
observer_system.rs Generalised ECS reactivity with Observers (#10839) 2024-06-15 01:33:26 +00:00
query.rs Fix typo in Query::single_mut docs (#13916) 2024-06-18 19:55:37 +00:00
system.rs Generalised ECS reactivity with Observers (#10839) 2024-06-15 01:33:26 +00:00
system_name.rs impl ExclusiveSystemParam for SystemName (#11163) 2024-01-01 17:08:29 +00:00
system_param.rs Generalised ECS reactivity with Observers (#10839) 2024-06-15 01:33:26 +00:00
system_registry.rs Better SystemId to Entity conversions (#13090) 2024-04-25 18:47:49 +00:00