| Age | Commit message (Expand) | Author | Lines |
| 2018-01-04 | Fix potential overflow in TrustedRandomAccess impl for slice::{Chunks,ChunksMut} | Sebastian Dröge | -2/+8 |
| 2018-01-03 | Fix compilation of TrustedRandomAccess impl for slice::Chunks | Sebastian Dröge | -2/+2 |
| 2018-01-03 | Implement TrustedRandomAccess for slice::{Chunks, ChunksMut, Windows} | Sebastian Dröge | -0/+28 |
| 2018-01-03 | Rollup merge of #47118 - hdhoang:patch-2, r=BurntSushi | kennytm | -2/+2 |
| 2018-01-02 | Use assert!(chunk_size != 0) instead of > 0 for usize value | Sebastian Dröge | -1/+1 |
| 2018-01-02 | Consistently use chunk_size as the field name for Chunks and ChunksMut | Sebastian Dröge | -15/+15 |
| 2018-01-01 | memchr: fix variable name in docstrings | Hoàng Đức Hiếu | -2/+2 |
| 2017-12-31 | Auto merge of #46713 - Manishearth:memchr, r=bluss | bors | -1/+260 |
| 2017-12-31 | Use memchr for [i8]::contains as well | Manish Goregaokar | -0/+8 |
| 2017-12-24 | Deprecate [T]::rotate in favor of [T]::rotate_{left,right}. | Corey Farwell | -2/+15 |
| 2017-12-20 | docs(slice): Clarify half-open interval | Florian Keller | -1/+1 |
| 2017-12-13 | Support 16 bit platforms | Manish Goregaokar | -0/+6 |
| 2017-12-13 | Use memchr in [u8]::contains | Manish Goregaokar | -1/+17 |
| 2017-12-13 | Move rust memchr impl to libcore | Manish Goregaokar | -0/+229 |
| 2017-11-17 | Auto merge of #45595 - scottmcm:iter-try-fold, r=dtolnay | bors | -110/+45 |
| 2017-11-11 | Auto merge of #45333 - alkis:master, r=bluss | bors | -16/+18 |
| 2017-11-11 | Improve the performance of binary_search by reducing the number of | Alkis Evlogimenos | -16/+18 |
| 2017-11-06 | Inclusive range updated to `..=` syntax | Badel2 | -9/+6 |
| 2017-11-01 | De-stabilize core::slice::{from_ref, from_ref_mut}. | whitequark | -2/+2 |
| 2017-10-29 | Fundamental internal iteration with try_fold | Scott McMurray | -110/+45 |
| 2017-10-23 | Bring back slice::ref_slice as slice::from_ref. | whitequark | -0/+16 |
| 2017-09-30 | address some `FIXME`s whose associated issues were marked as closed | Niv Kaminer | -3/+3 |
| 2017-09-22 | Substitute `...` with the expanded form | Badel2 | -9/+8 |
| 2017-09-22 | Add support for `..=` syntax | Alex Burka | -0/+4 |
| 2017-08-30 | Remove Borrow bound from SliceExt::binary_search | Chris Stankus | -15/+10 |
| 2017-08-21 | Add [T]::swap_with_slice | Scott McMurray | -0/+13 |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -1/+1 |
| 2017-07-20 | std: Cut down #[inline] annotations where not necessary | Alex Crichton | -1/+1 |
| 2017-07-02 | Fix tidy errors | Stjepan Glavina | -3/+3 |
| 2017-07-02 | Stabilize feature sort_unstable | Stjepan Glavina | -2/+2 |
| 2017-06-21 | Reuse the mem::swap optimizations to speed up slice::rotate | Scott McMurray | -8/+1 |
| 2017-06-19 | Bump version and stage0 compiler | Alex Crichton | -15/+6 |
| 2017-06-02 | Auto merge of #41670 - scottmcm:slice-rotate, r=alexcrichton | bors | -0/+126 |
| 2017-05-24 | Rollup merge of #42134 - scottmcm:rangeinclusive-struct, r=aturon | Mark Simulacrum | -40/+27 |
| 2017-05-21 | Stop returning k from [T]::rotate | Scott McMurray | -4/+2 |
| 2017-05-21 | Update slice_rotate to a real tracking number | Scott McMurray | -1/+1 |
| 2017-05-21 | Remove the optimization in ptr_swap_n | Scott McMurray | -45/+3 |
| 2017-05-21 | Add an in-place rotate method for slices to libcore | Scott McMurray | -0/+170 |
| 2017-05-21 | Make RangeInclusive just a two-field struct | Scott McMurray | -40/+27 |
| 2017-05-20 | Correct some stability versions | Oliver Middleton | -1/+1 |
| 2017-05-05 | Improve implementation approach comments in [T]::reverse() | Scott McMurray | -4/+15 |
| 2017-05-04 | Make [u8]::reverse() 5x faster | Scott McMurray | -0/+38 |
| 2017-04-28 | Explain why zero-length slices require a non-null pointer | Henri Sivonen | -2/+6 |
| 2017-04-09 | Move away from the ad-hoc NoDrop unions | Simonas Kazlauskas | -18/+12 |
| 2017-04-08 | slice: Implement .rfind() for slice iterators Iter and IterMut | Ulrik Sverdrup | -0/+13 |
| 2017-04-05 | Rollup merge of #41065 - jorendorff:slice-rsplit-41020, r=alexcrichton | Ariel Ben-Yehuda | -17/+148 |
| 2017-04-05 | Rollup merge of #40943 - Amanieu:offset_to, r=alexcrichton | Ariel Ben-Yehuda | -3/+4 |
| 2017-04-04 | simplify implementation of [T]::splitn and friends #41020 | Jason Orendorff | -17/+9 |
| 2017-04-04 | add [T]::rsplit() and rsplit_mut() #41020 | Jason Orendorff | -0/+139 |
| 2017-04-03 | Add ptr::offset_to | Amanieu d'Antras | -3/+4 |