summary refs log tree commit diff
path: root/src/libcore/slice/mod.rs
AgeCommit message (Expand)AuthorLines
2017-09-30address some `FIXME`s whose associated issues were marked as closedNiv Kaminer-3/+3
2017-09-22Substitute `...` with the expanded formBadel2-9/+8
2017-09-22Add support for `..=` syntaxAlex Burka-0/+4
2017-08-30Remove Borrow bound from SliceExt::binary_searchChris Stankus-15/+10
2017-08-21Add [T]::swap_with_sliceScott McMurray-0/+13
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-1/+1
2017-07-20std: Cut down #[inline] annotations where not necessaryAlex Crichton-1/+1
2017-07-02Fix tidy errorsStjepan Glavina-3/+3
2017-06-19Bump version and stage0 compilerAlex Crichton-15/+6
2017-06-02Auto merge of #41670 - scottmcm:slice-rotate, r=alexcrichtonbors-0/+14
2017-05-24Rollup merge of #42134 - scottmcm:rangeinclusive-struct, r=aturonMark Simulacrum-40/+27
2017-05-21Stop returning k from [T]::rotateScott McMurray-4/+2
2017-05-21Update slice_rotate to a real tracking numberScott McMurray-1/+1
2017-05-21Add an in-place rotate method for slices to libcoreScott McMurray-0/+16
2017-05-21Make RangeInclusive just a two-field structScott McMurray-40/+27
2017-05-20Correct some stability versionsOliver Middleton-1/+1
2017-05-05Improve implementation approach comments in [T]::reverse()Scott McMurray-4/+15
2017-05-04Make [u8]::reverse() 5x fasterScott McMurray-0/+38
2017-04-28Explain why zero-length slices require a non-null pointerHenri Sivonen-2/+6
2017-04-08slice: Implement .rfind() for slice iterators Iter and IterMutUlrik Sverdrup-0/+13
2017-04-05Rollup merge of #41065 - jorendorff:slice-rsplit-41020, r=alexcrichtonAriel Ben-Yehuda-17/+148
2017-04-05Rollup merge of #40943 - Amanieu:offset_to, r=alexcrichtonAriel Ben-Yehuda-3/+4
2017-04-04simplify implementation of [T]::splitn and friends #41020Jason Orendorff-17/+9
2017-04-04add [T]::rsplit() and rsplit_mut() #41020Jason Orendorff-0/+139
2017-04-03Add ptr::offset_toAmanieu d'Antras-3/+4
2017-03-31Auto merge of #40737 - nagisa:safe-slicing-strs, r=BurntSushibors-28/+24
2017-03-22Checked (and unchecked) slicing for strings?Simonas Kazlauskas-28/+24
2017-03-22Various fixes to wording consistency in the docsStjepan Glavina-5/+5
2017-03-21Unit test heapsortStjepan Glavina-0/+9
2017-03-21Implement feature sort_unstableStjepan Glavina-0/+2460