aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/rust/kernel/alloc/kvec.rs (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-05-22rust: remove unneeded Rust 1.87.0 `allow(clippy::ptr_eq)`Miguel Ojeda1-3/+0
2025-05-18Merge tag 'alloc-next-v6.16-2025-05-13' of https://github.com/Rust-for-Linux/linux into rust-nextMiguel Ojeda1-26/+404
2025-05-07rust: alloc: add Vec::insert_within_capacityAlice Ryhl1-1/+50
2025-05-07rust: alloc: add Vec::removeAlice Ryhl1-1/+37
2025-05-07rust: alloc: add Vec::retainAlice Ryhl1-0/+72
2025-05-07rust: alloc: add Vec::drain_allAlice Ryhl1-0/+59
2025-05-07rust: alloc: add Vec::push_within_capacityAlice Ryhl1-4/+42
2025-05-07rust: alloc: add Vec::popAlice Ryhl1-0/+31
2025-05-07rust: alloc: add Vec::clearAlice Ryhl1-0/+20
2025-05-07rust: allow Rust 1.87.0's `clippy::ptr_eq` lintMiguel Ojeda1-0/+3
2025-04-23rust: alloc: replace `Vec::set_len` with `inc_len`Tamir Duberstein1-13/+12
2025-04-23rust: alloc: refactor `Vec::truncate` using `dec_len`Tamir Duberstein1-17/+8
2025-04-23rust: alloc: add `Vec::dec_len`Tamir Duberstein1-0/+20
2025-04-23rust: alloc: add Vec::len() <= Vec::capacity invariantTamir Duberstein1-6/+9
2025-04-07rust: alloc: use `spare_capacity_mut` to reduce unsafeTamir Duberstein1-8/+3
2025-04-07rust: alloc: add Vec::resize methodAndrew Ballance1-0/+27
2025-04-07rust: alloc: add Vec::truncate methodAndrew Ballance1-0/+35
2025-04-07rust: alloc: add missing invariant in Vec::set_len()Danilo Krummrich1-0/+3
2024-10-15rust: alloc: implement `collect` for `IntoIter`Danilo Krummrich1-0/+95
2024-10-15rust: alloc: implement `IntoIterator` for `Vec`Danilo Krummrich1-0/+170
2024-10-15rust: alloc: implement kernel `Vec` typeDanilo Krummrich1-0/+648