about summary refs log tree commit diff
path: root/library/alloc/tests/vec_deque.rs
AgeCommit message (Expand)AuthorLines
2025-01-22Implement `VecDeque::pop_front_if` & `VecDeque::pop_back_if`Pavel Grigorenko-0/+39
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-2/+2
2024-09-13Update tests for hidden references to mutable staticObei Sideg-0/+3
2024-08-28Re-enable android tests/benches in allocBen Kimock-3/+0
2024-07-29Reformat `use` declarations.Nicholas Nethercote-3/+4
2024-03-01try_with_capacity for Vec, VecDeque, StringKornel-0/+11
2024-02-15Replace `NonZero::<_>::new` with `NonZero::new`.Markus Reiter-2/+2
2024-02-15Use generic `NonZero` internally.Markus Reiter-3/+3
2023-06-13ignore core, alloc and test tests that require unwinding on panic=abortPietro Albini-0/+3
2023-03-27fix advance_by impl for vec_deque and add testsThe 8472-0/+23
2023-02-25Add test for VecDeque::append ZST capacity overflowpommicket-0/+14
2022-12-08Apply review feedback; Fix no_global_oom_handling buildScott McMurray-3/+13
2022-12-08Make `VecDeque::from_iter` O(1) from `vec(_deque)::IntoIter`Scott McMurray-0/+26
2022-11-20Update VecDeque implementationMarkus Everling-6/+7
2022-11-15`VecDeque::resize` should re-use the buffer in the passed-in elementScott McMurray-0/+8
2022-03-25Adjust tests for isize::MAX allocation always being checkedCAD97-109/+52
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-2/+2
2022-01-09eplace usages of vec![].into_iter with [].into_iterLucas Kent-6/+6
2021-08-07Use assert_matches! instead of if let {} elseKornel-99/+92
2021-07-24Hide allocator details from TryReserveErrorKornel-31/+69
2021-04-15VecDeque: Add partition_point() #78021Vojtech Kral-0/+18
2020-12-13replace assert! with assert_eq!Justus K-1/+1
2020-12-13fix panic if converting ZST Vec to VecDequeJustus K-0/+7
2020-10-17Rebase conflictsAlexis Bourget-0/+30
2020-10-09liballoc: VecDeque: Add binary search functionsVojtech Kral-0/+39
2020-09-04Add tests for overflow in String / VecDeque operations using rangesTomasz Miąsko-0/+15
2020-07-27mv std libs to library/mark-0/+1646