bevy/examples/2d
ira 4847f7e3ad Update codebase to use IntoIterator where possible. (#5269)
Remove unnecessary calls to `iter()`/`iter_mut()`.
Mainly updates the use of queries in our code, docs, and examples.

```rust
// From
for _ in list.iter() {
for _ in list.iter_mut() {

// To
for _ in &list {
for _ in &mut list {
```

We already enable the pedantic lint [clippy::explicit_iter_loop](https://rust-lang.github.io/rust-clippy/stable/) inside of Bevy. However, this only warns for a few known types from the standard library.

## Note for reviewers
As you can see the additions and deletions are exactly equal.
Maybe give it a quick skim to check I didn't sneak in a crypto miner, but you don't have to torture yourself by reading every line.
I already experienced enough pain making this PR :) 


Co-authored-by: devil-ira <justthecooldude@gmail.com>
2022-07-11 15:28:50 +00:00
..
mesh2d.rs Camera Driven Rendering (#4745) 2022-06-02 00:12:17 +00:00
mesh2d_manual.rs Update codebase to use IntoIterator where possible. (#5269) 2022-07-11 15:28:50 +00:00
mesh2d_vertex_color_texture.rs Camera Driven Rendering (#4745) 2022-06-02 00:12:17 +00:00
move_sprite.rs Update codebase to use IntoIterator where possible. (#5269) 2022-07-11 15:28:50 +00:00
rotation.rs Update codebase to use IntoIterator where possible. (#5269) 2022-07-11 15:28:50 +00:00
shapes.rs Camera Driven Rendering (#4745) 2022-06-02 00:12:17 +00:00
sprite.rs Camera Driven Rendering (#4745) 2022-06-02 00:12:17 +00:00
sprite_flipping.rs Camera Driven Rendering (#4745) 2022-06-02 00:12:17 +00:00
sprite_sheet.rs Update codebase to use IntoIterator where possible. (#5269) 2022-07-11 15:28:50 +00:00
text2d.rs Update codebase to use IntoIterator where possible. (#5269) 2022-07-11 15:28:50 +00:00
texture_atlas.rs Change default Image FilterMode to Linear (#4465) 2022-06-11 09:13:37 +00:00
transparency_2d.rs use the default() method in examples instead of Default::default() (#4952) 2022-06-07 02:16:47 +00:00