oxc/crates/oxc_allocator
overlookmotel 6c7acac72e feat(allocator): implement IntoIterator for &mut Vec (#8389)
Implement `IntoIterator` for `&mut Vec` like `std::vec::Vec` does. This allows shorter and more idiomatic syntax.

Before:

```rs
for item in object.collection.iter_mut() {
  // ...
}
```

After:

```rs
for item in &mut object.collection {
  // ...
}
```
2025-01-09 15:32:16 +00:00
..
src feat(allocator): implement IntoIterator for &mut Vec (#8389) 2025-01-09 15:32:16 +00:00
Cargo.toml release(crates): v0.44.0 (#8110) 2024-12-25 21:03:09 +08:00
CHANGELOG.md release(crates): v0.43.0 (#8054) 2024-12-21 15:07:21 +08:00