| Age | Commit message (Expand) | Author | Lines |
| 2018-06-04 | Move slice::exact_chunks directly above exact_chunks_mut for more consistent ... | Sebastian Dröge | -35/+35 |
| 2018-06-03 | Rollup merge of #51326 - sdroege:slice-iter-cleanup, r=dtolnay | Mark Simulacrum | -16/+22 |
| 2018-06-03 | Implement TrustedLen for Windows and the 4 Chunks iterators | Sebastian Dröge | -0/+15 |
| 2018-06-03 | Remove mention of Slice/SliceMut traits from IterMut documentation | Sebastian Dröge | -3/+1 |
| 2018-06-03 | Move TrustedLen and FusedIterator impl of Iter/IterMut into macro | Sebastian Dröge | -13/+6 |
| 2018-06-01 | Stabilize SliceIndex trait. | Thayne McCombs | -2/+30 |
| 2018-05-28 | extend from_raw_parts docs for slices and strs to mention alignment requirement | Ralf Jung | -5/+6 |
| 2018-05-23 | Rollup merge of #50945 - stjepang:stabilize-from-ref, r=SimonSapin | kennytm | -3/+3 |
| 2018-05-21 | Make `[T]::len` and `str::len` const fn | Oliver Schneider | -11/+21 |
| 2018-05-21 | Stabilize feature from_ref | Stjepan Glavina | -3/+3 |
| 2018-05-19 | Fix warning when building stage0 libcore | Dan Robertson | -0/+1 |
| 2018-05-17 | Remove the intrinsic for align_offset | Simonas Kazlauskas | -2/+5 |
| 2018-05-17 | Implement [T]::align_to | Simonas Kazlauskas | -20/+162 |
| 2018-05-17 | Change align_offset to support different strides | Simonas Kazlauskas | -0/+22 |
| 2018-05-17 | Switch to 1.26 bootstrap compiler | Mark Simulacrum | -728/+259 |
| 2018-05-10 | Rollup merge of #50010 - ExpHP:slice-bounds, r=alexcrichton | Alex Crichton | -4/+8 |
| 2018-05-06 | Move the tests in src/libcore/slice/memchr.rs as well. | kennytm | -82/+0 |
| 2018-05-02 | nano-optimization for memchr::repeat_byte | Andre Bogus | -13/+2 |
| 2018-04-30 | str/slice: factor out overflow error messages | Michael Lamparski | -4/+8 |
| 2018-04-25 | Fix type | z4v1er | -1/+0 |
| 2018-04-21 | Make the unstable StrExt and SliceExt traits private to libcore in not(stage0) | Simon Sapin | -2/+5 |
| 2018-04-21 | Replace SliceExt with inherent [T] methods in libcore | Simon Sapin | -0/+1404 |
| 2018-04-21 | Move non-allocating [u8] inherent methods to libcore | Simon Sapin | -0/+65 |
| 2018-04-17 | stabilize `swap_with_slice` feature | tinaun | -1/+1 |
| 2018-04-17 | stabilize `slice_rsplit` feature | tinaun | -14/+14 |
| 2018-03-31 | Deprecate offset_to; switch core&alloc to using offset_from instead | Scott McMurray | -5/+6 |
| 2018-03-15 | Stabilize `inclusive_range` library feature. | kennytm | -2/+2 |
| 2018-03-06 | Rollup merge of #47463 - bluss:fused-iterator, r=alexcrichton | kennytm | -12/+10 |
| 2018-03-03 | Auto merge of #48583 - dotdash:jt_assume, r=alexcrichton | bors | -15/+9 |
| 2018-03-03 | core: Update stability attributes for FusedIterator | Ulrik Sverdrup | -12/+10 |
| 2018-03-03 | core: Stabilize FusedIterator | Ulrik Sverdrup | -12/+12 |
| 2018-02-27 | Backport LLVM fixes for a JumpThreading / assume intrinsic bug | Björn Steinbrink | -15/+9 |
| 2018-02-22 | Stabilize [T]::rotate_{left,right} | Corey Farwell | -2/+2 |
| 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-03 | Rollup merge of #47118 - hdhoang:patch-2, r=BurntSushi | kennytm | -2/+2 |