about summary refs log tree commit diff
path: root/src/libcore/tests/slice.rs
AgeCommit message (Expand)AuthorLines
2019-04-03Rollup merge of #55448 - Mokosha:SortAtIndex, r=blussMazdak Farrokhzad-0/+118
2019-03-24Rollup merge of #59328 - koalatux:iter-nth-back, r=scottmcmkennytm-0/+13
2019-03-11Add initial implementation of 'sort_at_index' for slices -- analog to C++'s s...Pavel Krajcevski-0/+118
2019-03-10we can now skip should_panic tests with the libtest harnessRalf Jung-7/+0
2019-02-24implement nth_back for WindowsAdrian Friedli-0/+13
2019-02-13review or fix miri failures in iter, slice, cell, timeRalf Jung-5/+3
2019-02-13mark failures expected due to panicsRalf Jung-7/+7
2019-02-07disable tests in MiriRalf Jung-0/+12
2019-01-17Add is_sorted impl for [T]Kevin Leimkuhler-0/+15
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-11std: Depend directly on crates.io cratesAlex Crichton-3/+3
2018-10-18Add slice::rchunks(), rchunks_mut(), rchunks_exact() and rchunks_exact_mut()Sebastian Dröge-0/+222
2018-09-25Rollup merge of #54537 - sdroege:chunks-exact, r=alexcrichtonPietro Albini-29/+29
2018-09-24Rename slice::exact_chunks() to slice::chunks_exact()Sebastian Dröge-29/+29
2018-09-23Introduce the partition_dedup/by/by_key methods for slicesClément Renault-0/+59
2018-09-20add tests for copy_withinJack O'Connor-0/+46
2018-09-04Breaking change upgradesMark Rousskov-2/+2
2018-08-02test that align_of handles alignment properly for the mid partRalf Jung-0/+14
2018-08-02test nth betterRalf Jung-11/+37
2018-08-02slice iterators: ZST iterators no longer just "make up" addressesRalf Jung-0/+100
2018-07-12Auto merge of #51339 - sdroege:exact-chunks-remainder, r=alexcrichtonbors-0/+14
2018-06-26migrate codebase to `..=` inclusive range patternsZack M. Davis-2/+2
2018-06-04Add ExactChunks::remainder and ExactChunks::into_remainderSebastian Dröge-0/+14
2018-05-17Fix align_offset_stride1 & align_to_simple testsSimonas Kazlauskas-1/+1
2018-05-17Implement [T]::align_toSimonas Kazlauskas-0/+34
2018-05-10Rollup merge of #50010 - ExpHP:slice-bounds, r=alexcrichtonAlex Crichton-37/+213
2018-05-06Move the tests in src/libcore/slice/memchr.rs as well.kennytm-0/+86
2018-04-30revise macro in slice testsMichael Lamparski-92/+62
2018-04-30flesh out tests for SliceIndexMichael Lamparski-38/+244
2018-03-11Update Cargo submoduleAlex Crichton-1/+70
2018-01-18Rollup merge of #47333 - arthurprs:iter-position-bounds-check, r=dtolnaykennytm-0/+19
2018-01-15Rollup merge of #47126 - sdroege:exact-chunks, r=blusskennytm-8/+112
2018-01-13Add unit tests for exact_chunks/exact_chunks_mutSebastian Dröge-0/+104
2018-01-13Test the whole chunks instead of just an element in the chunks/chunks_mut testsSebastian Dröge-8/+8
2018-01-12Optimize slice.{r}position result bounds checkarthurprs-0/+19
2018-01-09Rollup merge of #46777 - frewsxcv:frewsxcv-rotate, r=alexcrichtonCorey Farwell-3/+18
2018-01-03Add unit test for zipping slice::{Chunks, ChunksMut, Windows} iteratorsSebastian Dröge-0/+39
2017-12-24Deprecate [T]::rotate in favor of [T]::rotate_{left,right}.Corey Farwell-3/+18
2017-11-20Auto merge of #45905 - alexcrichton:add-wasm-target, r=aturonbors-68/+0
2017-11-19std: Add a new wasm32-unknown-unknown targetAlex Crichton-68/+0
2017-11-17Auto merge of #45595 - scottmcm:iter-try-fold, r=dtolnaybors-0/+17
2017-11-11Improve the performance of binary_search by reducing the number ofAlkis Evlogimenos-13/+50
2017-10-29Fundamental internal iteration with try_foldScott McMurray-0/+17
2017-08-02Fixed errors in libstd.Isaac van Bakel-6/+6
2017-05-21Stop returning k from [T]::rotateScott McMurray-2/+2
2017-05-21Add an in-place rotate method for slices to libcoreScott McMurray-0/+16
2017-04-08slice: Implement .rfind() for slice iterators Iter and IterMutUlrik Sverdrup-0/+13
2017-04-03Move libXtest into libX/testsStjepan Glavina-0/+291