summary refs log tree commit diff
path: root/src/libcollections/slice.rs
AgeCommit message (Expand)AuthorLines
2015-02-18Round 4 test fixes and rebase conflictsAlex Crichton-2/+2
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-10/+10
2015-02-18Stabilize std::borrowAaron Turon-9/+10
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-10/+10
2015-02-16Auto merge of #22367 - Manishearth:rollup, r=steveklabnikbors-1/+0
2015-02-15Fix rollup (remove slicing_syntax)Manish Goregaokar-1/+0
2015-02-13more int and cloned cleanup in collectionsAlexis-2/+2
2015-02-11implement missing iterator traits for slice::WindowsDavid Creswick-0/+12
2015-02-06remove int_uint feature from libcollectionsAlexis-2/+2
2015-02-06Rollup merge of #21926 - mzabaluev:raw-lifetime, r=alexcrichtonManish Goregaokar-0/+1
2015-02-05remove int_uint feature from libcollectionsAlexis-20/+20
2015-02-05remove unecessary lifetimes from a bunch of collections codeAlexis-26/+26
2015-02-05misc collections code cleanupAlexis-300/+298
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-22/+22
2015-02-05Replace usage of slice::from_raw_buf with slice::from_raw_partsMikhail Zabaluev-0/+1
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-9/+9
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-6/+6
2015-02-02register snapshotsJorge Aparicio-6/+0
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-190/+190
2015-01-30fix falloutJorge Aparicio-1/+1
2015-01-30Remove all `i` suffixesTobias Bucher-190/+190
2015-01-30Remove FullRange from the prelude etc.Nick Cameron-0/+6
2015-01-29remove unused importsJorge Aparicio-1/+1
2015-01-29fix inference falloutJorge Aparicio-9/+9
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-2/+2
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-9/+9
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-17/+17
2015-01-29Auto merge of #21680 - japaric:slice, r=alexcrichtonbors-31/+31
2015-01-28Merge remote-tracking branch 'origin/master' into rollupManish Goregaokar-70/+88
2015-01-27cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` callsJorge Aparicio-31/+31
2015-01-26Correct a typo in a deprecation warningCarol Nichols-1/+1
2015-01-26Add examples to documentation of SliceExt methodsCarol Nichols-3/+104
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-47/+53
2015-01-23grandfathered -> rust1Brian Anderson-43/+43
2015-01-23Deprecated attributes don't take 'feature' names and are paired with stable/u...Brian Anderson-1/+2
2015-01-23Set unstable feature names appropriatelyBrian Anderson-26/+26
2015-01-22Rollup merge of #21484 - steveklabnik:connect_docs, r=alexcrichtonSteve Klabnik-2/+21
2015-01-21Remove 'since' from unstable attributesBrian Anderson-26/+26
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-70/+81
2015-01-21add doc examples for connect/concatSteve Klabnik-2/+21
2015-01-21rollup merge of #21258: aturon/stab-3-indexAlex Crichton-45/+19
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-6/+6
2015-01-21rollup merge of #21053: apasel422/exactAlex Crichton-0/+7
2015-01-21Fallout from stabilization.Aaron Turon-1/+1
2015-01-21Deprecate slicing methods in favor of notationAaron Turon-44/+18
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-6/+6
2015-01-20implement `ExactSizeIterator` for `slice::{Chunks,ChunksMut}`Andrew Paseltiner-0/+7
2015-01-17Remove unnecessary explicit conversions to *const Twe-1/+1
2015-01-12cleanup: `&foo[0..a]` -> `&foo[..a]`Jorge Aparicio-6/+6