about summary refs log tree commit diff
path: root/src/libcollections
AgeCommit message (Expand)AuthorLines
2015-01-29s/Show/Debug/gJorge Aparicio-10/+10
2015-01-29remove unused importsJorge Aparicio-2/+2
2015-01-29fix inference falloutJorge Aparicio-15/+15
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-22/+22
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-116/+116
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-44/+44
2015-01-29Auto merge of #21680 - japaric:slice, r=alexcrichtonbors-51/+51
2015-01-28Merge remote-tracking branch 'origin/master' into rollupManish Goregaokar-645/+756
2015-01-28Move return type an associated type of the `Fn*` traits. Mostly this involves...Niko Matsakis-1/+3
2015-01-27Rollup merge of #21625 - carols10cents:sliceext-examples, r=alexcrichtonManish Goregaokar-4/+105
2015-01-27cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` callsJorge Aparicio-51/+51
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-26Merge remote-tracking branch 'rust-lang/master'Brian Anderson-1/+17
2015-01-26add split_off method to vec with testsJeff Belgum-2/+46
2015-01-26Auto merge of #21401 - kballard:optimize-shrink-to-fit, r=nikomatsakisbors-1/+17
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-175/+155
2015-01-23grandfathered -> rust1Brian Anderson-490/+490
2015-01-23Deprecated attributes don't take 'feature' names and are paired with stable/u...Brian Anderson-1/+3
2015-01-23Set unstable feature names appropriatelyBrian Anderson-137/+140
2015-01-22Rollup merge of #21484 - steveklabnik:connect_docs, r=alexcrichtonSteve Klabnik-2/+21
2015-01-22Put #[staged_api] behind the 'staged_api' gateBrian Anderson-0/+1
2015-01-21Remove 'since' from unstable attributesBrian Anderson-136/+136
2015-01-21Tie stability attributes to feature gatesBrian Anderson-1/+1
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-627/+720
2015-01-21add doc examples for connect/concatSteve Klabnik-2/+21
2015-01-21rollup merge of #21258: aturon/stab-3-indexAlex Crichton-119/+66
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-47/+48
2015-01-21rollup merge of #21437: FlaPer87/snapshotAlex Crichton-3/+0
2015-01-21rollup merge of #21396: japaric/no-parens-in-rangeAlex Crichton-3/+3
2015-01-21rollup merge of #21354: eddyb/vec-ufcsAlex Crichton-8/+8
2015-01-21rollup merge of #21053: apasel422/exactAlex Crichton-0/+7
2015-01-21Fallout from stabilization.Aaron Turon-23/+28
2015-01-21Deprecate slicing methods in favor of notationAaron Turon-94/+28
2015-01-21Stabilize Index traits and most range notationAaron Turon-2/+10
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-47/+48
2015-01-20implement `ExactSizeIterator` for `slice::{Chunks,ChunksMut}`Andrew Paseltiner-0/+7
2015-01-20Register snapshot for 9006c3cFlavio Percoco-3/+0
2015-01-21Rollup merge of #21388 - aochagavia:collections, r=GankroBarosl LEE-11/+71
2015-01-21Rollup merge of #21375 - petrochenkov:ssbsl, r=alexcrichtonBarosl LEE-13/+13
2015-01-21Rollup merge of #20998 - estsauver:20984, r=steveklabnikBarosl LEE-4/+4
2015-01-19Don't reallocate when capacity is already equal to lengthKevin Ballard-1/+1
2015-01-19Add benchmark for String::shrink_to_fit()Kevin Ballard-0/+16
2015-01-19remove unnecessary parentheses from range notationJorge Aparicio-3/+3
2015-01-19Implement range and range_mut for BTreePiotr Czarnecki-194/+604
2015-01-19Add test for #21328Adolfo Ochagavía-1/+13
2015-01-19Add a Drain iterator to VecMapAdolfo Ochagavía-6/+55
2015-01-19Make VecMap::into_iter consume the VecMapAdolfo Ochagavía-4/+3
2015-01-18Improve the vec![...] macro with UFCS.Eduard Burtescu-8/+8
2015-01-18auto merge of #21288 : brson/rust/snaps, r=alexcrichtonbors-29/+1