bevy/crates/bevy_ui/src
Joseph d5d355ae1f
Fix the clippy::explicit_iter_loop lint (#9834)
# Objective

Replace instances of

```rust
for x in collection.iter{_mut}() {
```

with

```rust
for x in &{mut} collection {
```

This also changes CI to no longer suppress this lint. Note that since
this lint only shows up when using clippy in pedantic mode, it was
probably unnecessary to suppress this lint in the first place.
2023-09-19 03:35:22 +00:00
..
layout Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
render Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
widget Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
accessibility.rs Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
camera_config.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
focus.rs Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
geometry.rs Derive Serialize and Deserialize for UiRect (#9820) 2023-09-15 19:51:57 +00:00
lib.rs Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
measurement.rs Change the default for the measure_func field of ContentSize to None. (#9346) 2023-08-07 23:06:40 +00:00
node_bundles.rs Add missing bevy_text feature attribute to TextBundle from impl (#9785) 2023-09-13 19:24:24 +00:00
stack.rs Fix typos throughout the project (#9090) 2023-07-10 00:11:51 +00:00
ui_node.rs Move Val into geometry (#9818) 2023-09-15 12:45:32 +00:00
update.rs Do not panic on non-UI child of UI entity (#9621) 2023-08-29 10:49:40 +00:00