| Age | Commit message (Expand) | Author | Lines |
| 2021-07-14 | Add safety comments in private core::slice::rotate::ptr_rotate function | Alexis Bourget | -2/+54 |
| 2021-07-08 | Auto merge of #86823 - the8472:opt-chunk-tra, r=kennytm | bors | -13/+11 |
| 2021-07-02 | optimize chunks and chunks_mut | The8472 | -13/+11 |
| 2021-06-30 | Remove "length" doc aliases | Amanieu d'Antras | -1/+0 |
| 2021-06-23 | Use HTTPS links where possible | Smitty | -1/+1 |
| 2021-06-21 | Auto merge of #86383 - shamatar:slice_len_lowering, r=bjorn3 | bors | -0/+1 |
| 2021-06-20 | Squashed implementation of the pass | Alex Vlasov | -0/+1 |
| 2021-06-16 | Add doc(hidden) to all __iterator_get_unchecked | Jacob Hoffman-Andrews | -0/+2 |
| 2021-06-15 | Auto merge of #85406 - VillSnow:integrate_binary_search, r=JohnTitor | bors | -21/+1 |
| 2021-06-07 | Clarify documentation of slice sorting methods | Lionel Foxcroft | -9/+15 |
| 2021-05-23 | Don't reborrow self when computing the dest pointer in <[T]>::copy_within | Giacomo Stevanato | -1/+5 |
| 2021-05-17 | Make partition_point to forward to binary_search_by | VillSnow | -21/+1 |
| 2021-05-06 | Perf Experiment: Wait, what if I just skip the trait alias | Scott McMurray | -1/+1 |
| 2021-05-06 | Bootstrapping preparation for the library | Scott McMurray | -1/+1 |
| 2021-05-03 | Clarify documentation for `[T]::contains`. Fixes #84877. | Jim Blandy | -2/+3 |
| 2021-04-22 | Auto merge of #77704 - AnthonyMikh:slice_index_with_ops_bound_pair, r=m-ou-se | bors | -0/+112 |
| 2021-04-21 | Bump slice_index_with_ops_bound_pair to 1.53.0 | Mara Bos | -2/+2 |
| 2021-04-21 | Replace all `fmt.pad` with `debug_struct` | Christiaan Dirkx | -1/+1 |
| 2021-04-13 | Implement indexing slices with pairs of ops::Bound<usize> | AnthonyMikh | -0/+112 |
| 2021-04-04 | Bump cfgs | Mark Rousskov | -19/+9 |
| 2021-03-30 | Rollup merge of #83571 - a1phyr:feature_const_slice_first_last, r=dtolnay | Dylan DPC | -8/+16 |
| 2021-03-28 | Add escape_default method to u8 and [u8] | ltdk | -0/+95 |
| 2021-03-28 | Auto merge of #81354 - SkiFire13:binary-search-assume, r=nagisa | bors | -0/+2 |
| 2021-03-27 | Rollup merge of #82917 - cuviper:iter-zip, r=m-ou-se | Dylan DPC | -1/+2 |
| 2021-03-27 | Constantify some slice methods | Benoît du Garreau | -8/+16 |
| 2021-03-27 | Auto merge of #83245 - the8472:generalize-slice-fill, r=m-ou-se | bors | -36/+13 |
| 2021-03-26 | Use iter::zip in library/ | Josh Stone | -1/+2 |
| 2021-03-22 | Rollup merge of #82771 - emilio:iter-mut-as-slice, r=m-ou-se | Dylan DPC | -2/+8 |
| 2021-03-21 | Bump slice_iter_mut_as_slice stable version. | Mara Bos | -2/+2 |
| 2021-03-21 | Auto merge of #83053 - oli-obk:const_stab_version, r=m-ou-se | bors | -2/+2 |
| 2021-03-19 | Rollup merge of #82570 - WaffleLapkin:split_whitespace_as_str, r=m-ou-se | Dylan DPC | -2/+4 |
| 2021-03-18 | generalize slice::fill specialization for byte-sized items | The8472 | -36/+13 |
| 2021-03-15 | Fix const stability `since` versions. | Oli Scherer | -2/+2 |
| 2021-03-10 | apply review | François Mockers | -2/+4 |
| 2021-03-10 | add back sort_by_key link, allow linter and add comment | François Mockers | -1/+6 |
| 2021-03-09 | convert slice doc link to intra-doc links | François Mockers | -54/+53 |
| 2021-03-06 | Instruct LLVM that binary_search_by returns a valid index | Giacomo Stevanato | -0/+2 |
| 2021-03-05 | Auto merge of #74024 - Folyd:master, r=m-ou-se | bors | -19/+25 |
| 2021-03-04 | slice: Stabilize IterMut::as_slice. | Emilio Cobos Álvarez | -2/+8 |
| 2021-03-02 | Auto merge of #82043 - tmiasko:may-have-side-effect, r=kennytm | bors | -39/+13 |
| 2021-03-02 | Rollup merge of #80189 - jyn514:convert-primitives, r=poliorcetics | Yuki Okushi | -56/+54 |
| 2021-02-27 | Auto merge of #81874 - tesuji:spec_slice_fill, r=matthewjasper | bors | -7/+60 |
| 2021-02-27 | Fix `binary_search_by()` overflow issue in ZST case | Folyd | -3/+6 |
| 2021-02-27 | Add `as_str` method for split whitespace str iterators | Waffle | -2/+4 |
| 2021-02-25 | Convert the rest of the standard library primitives to intra-doc links | Joshua Nelson | -54/+54 |
| 2021-02-25 | Convert primitives to use intra-doc links | Joshua Nelson | -2/+0 |
| 2021-02-23 | Rollup merge of #81154 - dylni:improve-design-of-assert-len, r=KodrAus | Dylan DPC | -6/+107 |
| 2021-02-15 | Turn may_have_side_effect into an associated constant | Tomasz Miąsko | -39/+13 |
| 2021-02-15 | Use new pointer metadata API inside libcore instead of manual transmutes | Simon Sapin | -3/+17 |
| 2021-02-13 | Auto merge of #81854 - the8472:specialize-clone-slice, r=Mark-Simulacrum | bors | -9/+31 |