oxc/crates/oxc_allocator/src
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
..
address.rs chore: Rust v1.83.0 changes (#7535) 2024-11-29 11:59:45 +08:00
allocator_api2.rs feat(ast): implement allocator_api2 for Allocator (#8043) 2024-12-20 13:26:48 +00:00
boxed.rs chore: Rust v1.83.0 changes (#7535) 2024-11-29 11:59:45 +08:00
clone_in.rs chore: Rust v1.83.0 changes (#7535) 2024-11-29 11:59:45 +08:00
convert.rs docs(allocator): enable lint warnings on missing docs, and add missing doc comments (#6613) 2024-10-15 22:50:48 +00:00
lib.rs perf(semantic): allocate symbol data in Allocator (#8012) 2024-12-20 14:13:41 +00:00
serialize.rs refactor(oxc_ast): clean up doc 2023-04-16 00:39:07 +08:00
vec.rs feat(allocator): implement IntoIterator for &mut Vec (#8389) 2025-01-09 15:32:16 +00:00