about summary refs log tree commit diff
path: root/src/liballoc/slice.rs
AgeCommit message (Expand)AuthorLines
2019-10-02Stabilize `slice::repeat` (feature `repeat_generic_slice`)Lzu Tao-5/+1
2019-10-01Remove unneeded `fn main` blocks from docsLzu Tao-8/+3
2019-07-09Update src/liballoc/slice.rsSimon Sapin-1/+1
2019-07-09Update src/liballoc/slice.rsSimon Sapin-1/+1
2019-07-09Add joining slices of slices with a slice separator, not just a single itemSimon Sapin-1/+25
2019-07-09Take separator by value in `[T]::join`Simon Sapin-5/+5
2019-07-09Split the SliceConcat trait into Concat and JoinSimon Sapin-17/+57
2019-07-09Remove obsolete “should not have to exist” reasonsSimon Sapin-3/+1
2019-07-05Replace SliceConcatExt trait with inherent methods and SliceConcat helper traitSimon Sapin-60/+69
2019-06-22Rollup merge of #61146 - czipperz:SliceConcatExt-connect-default-to-join, r=s...Mazdak Farrokhzad-5/+3
2019-05-27Box::into_vec: use Box::into_raw instead of mem::forgetRalf Jung-5/+4
2019-05-24SliceConcatExt::connect defaults to calling joinChris Gregory-5/+3
2019-05-20Ban multi-trait objects via trait aliases.Alexander Regueiro-4/+4
2019-04-15warn(missing_docs) in liballoc, and add missing docsRalf Jung-0/+10
2019-02-12Revert "Remove mentions of unstable sort_by_cached key from stable documentat...Scott McMurray-0/+4
2019-02-12Stabilize slice_sort_by_cached_keyScott McMurray-2/+1
2019-02-10libs: doc commentsAlexander Regueiro-3/+3
2019-02-03liballoc: revert nested imports style changes.Mazdak Farrokhzad-14/+11
2019-02-02liballoc: apply uniform_paths.Mazdak Farrokhzad-2/+2
2019-02-02liballoc: prefer imports of borrow from libcore.Mazdak Farrokhzad-1/+2
2019-02-02liballoc: adjust abolute imports + more import fixes.Mazdak Farrokhzad-3/+1
2019-02-02liballoc: refactor & fix some imports.Mazdak Farrokhzad-9/+12
2019-02-02liballoc: cargo check passes on 2018Mazdak Farrokhzad-6/+7
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-09Auto merge of #56463 - ljedrz:slice_concat_join, r=nikicbors-3/+3
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-5/+5
2018-12-03slice: tweak concat & joinljedrz-3/+3
2018-11-22Auto merge of #53918 - Havvy:doc-sort-by, r=GuillaumeGomezbors-0/+16
2018-10-18Stabilize slice::rchunks(), rchunks_mut(), rchunks_exact(), rchunk_exact_mut()Sebastian Dröge-1/+1
2018-10-18Stabilize slice::chunks_exact() and slice::chunks_exact_mut()Sebastian Dröge-1/+1
2018-10-18Add slice::rchunks(), rchunks_mut(), rchunks_exact() and rchunks_exact_mut()Sebastian Dröge-0/+2
2018-10-05Linkify types in docsHavvy (Ryan Scheel)-1/+1
2018-10-05Slice total example: Move closer to total defnHavvy (Ryan Scheel)-6/+9
2018-10-05Example of total ord of elements for sort_byHavvy (Ryan Scheel)-0/+6
2018-10-05Doc total order requirement of sort(_unstable)_byHavvy (Ryan Scheel)-0/+7
2018-09-25Also rename ExactChunks iterator name to ChunksExactSebastian Dröge-1/+1
2018-09-24Rename slice::exact_chunks() to slice::chunks_exact()Sebastian Dröge-1/+1
2018-09-20std: Check for overflow in `str::repeat`Alex Crichton-1/+15
2018-08-20Replace usages of ptr::offset with ptr::{add,sub}.Corey Farwell-4/+4
2018-06-02Rollup merge of #51147 - tmccombs:sliceindex, r=SimonSapinMark Simulacrum-1/+1
2018-06-01incorporate changes from code reviewEmerentius-11/+13
2018-06-01optimize joining and concatenation for slicesEmerentius-11/+11
2018-06-01Stabilize SliceIndex trait.Thayne McCombs-1/+1
2018-05-21Stabilize feature from_refStjepan Glavina-2/+2
2018-05-17Switch to 1.26 bootstrap compilerMark Simulacrum-11/+2
2018-05-09move See also links to topMichael Lamparski-2/+2
2018-04-24Auto merge of #48999 - GuillaumeGomez:add-repeat-on-slice, r=Kimundibors-0/+71
2018-04-21Replace SliceExt with inherent [T] methods in libcoreSimon Sapin-1391/+5
2018-04-21Move non-allocating [u8] inherent methods to libcoreSimon Sapin-54/+4
2018-04-17stabilize `swap_with_slice` featuretinaun-7/+1