bevy/crates/bevy_ecs/src/schedule
TimJentzsch 694c980c82 Fix clippy::iter_with_drain (#6485)
# Objective

Fixes #6483.

- Fix the [`clippy::iter_with_drain`](https://rust-lang.github.io/rust-clippy/master/index.html#iter_with_drain) warnings
- From the docs: "`.into_iter()` is simpler with better performance"

## Solution

- Replace `.drain(..)` for `Vec` with `.into_iter()`
2022-11-06 01:42:15 +00:00
..
ambiguity_detection.rs Fix clippy::iter_with_drain (#6485) 2022-11-06 01:42:15 +00:00
executor_parallel.rs fix nightly clippy warnings (#6395) 2022-10-28 21:03:01 +00:00
executor.rs Adding Debug implementations for App, Stage, Schedule, Query, QueryState, etc. (#6214) 2022-10-10 20:59:38 +00:00
graph_utils.rs Fix some nightly clippy lints (#2522) 2021-07-29 19:36:39 -07:00
label.rs Remove ambiguity sets (#5916) 2022-09-09 17:21:50 +00:00
mod.rs fix nightly clippy warnings (#6395) 2022-10-28 21:03:01 +00:00
run_criteria.rs Adding Debug implementations for App, Stage, Schedule, Query, QueryState, etc. (#6214) 2022-10-10 20:59:38 +00:00
stage.rs Fix clippy::iter_with_drain (#6485) 2022-11-06 01:42:15 +00:00
state.rs Rename system chaining to system piping (#6230) 2022-10-11 15:21:12 +00:00
system_container.rs Adding Debug implementations for App, Stage, Schedule, Query, QueryState, etc. (#6214) 2022-10-10 20:59:38 +00:00
system_descriptor.rs Adding Debug implementations for App, Stage, Schedule, Query, QueryState, etc. (#6214) 2022-10-10 20:59:38 +00:00
system_set.rs Exclusive Systems Now Implement System. Flexible Exclusive System Params (#6083) 2022-09-26 23:57:07 +00:00