| Age | Commit message (Expand) | Author | Lines |
| 2018-02-15 | Partially revert #47333. | kennytm | -9/+15 |
| 2018-01-28 | Auto merge of #47772 - arthurprs:iter-position-bounds-check, r=dtolnay | bors | -2/+4 |
| 2018-01-26 | Use the slice length to hint the optimizer | arthurprs | -2/+4 |
| 2018-01-18 | Rollup merge of #47404 - integer32llc:reexport-to-re-export, r=steveklabnik | kennytm | -1/+1 |
| 2018-01-18 | Rollup merge of #47333 - arthurprs:iter-position-bounds-check, r=dtolnay | kennytm | -0/+37 |
| 2018-01-15 | Reexport -> re-export in prose and documentation comments | Carol (Nichols || Goulding) | -1/+1 |
| 2018-01-15 | Rollup merge of #47126 - sdroege:exact-chunks, r=bluss | kennytm | -0/+225 |
| 2018-01-13 | Implement TrustedRandomAccess for slice::{ExactChunks, ExactChunksMut} | Sebastian Dröge | -0/+18 |
| 2018-01-13 | Remove useless assertion | Sebastian Dröge | -2/+0 |
| 2018-01-13 | Apply review comments from @bluss | Sebastian Dröge | -44/+23 |
| 2018-01-13 | Add slice::ExactChunks and ::ExactChunksMut iterators | Sebastian Dröge | -0/+230 |
| 2018-01-12 | Optimize slice.{r}position result bounds check | arthurprs | -0/+37 |
| 2018-01-09 | Rollup merge of #46777 - frewsxcv:frewsxcv-rotate, r=alexcrichton | Corey Farwell | -2/+15 |
| 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-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 |
| 2017-12-31 | Auto merge of #46713 - Manishearth:memchr, r=bluss | bors | -1/+30 |
| 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 | Use memchr in [u8]::contains | Manish Goregaokar | -1/+17 |
| 2017-12-13 | Move rust memchr impl to libcore | Manish Goregaokar | -0/+5 |
| 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-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/+14 |
| 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 | Add an in-place rotate method for slices to libcore | Scott McMurray | -0/+16 |
| 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 |