about summary refs log tree commit diff
path: root/src/libcollections/slice.rs
AgeCommit message (Expand)AuthorLines
2015-03-11Example -> ExamplesSteve Klabnik-12/+12
2015-03-09Rename #[should_fail] to #[should_panic]Steven Fackler-13/+13
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-5/+5
2015-03-04Auto merge of #22920 - tshepang:remove-some-warnings, r=huonwbors-2/+2
2015-03-03Add `: Box<_>` or `::Box<_>` type annotations to various places.Felix S. Klock II-12/+14
2015-03-03Auto merge of #22532 - pnkfelix:arith-overflow, r=pnkfelix,eddybbors-3/+8
2015-03-03Fixes to collections to accommodate arith-overflow changes.Felix S. Klock II-3/+8
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-2/+2
2015-03-01remove some compiler warningsTshepang Lekhonkhobe-2/+2
2015-02-26remove some compiler warningsTshepang Lekhonkhobe-2/+2
2015-02-25Rollup merge of #22729 - alexcrichton:ptr-stabilization, r=aturonManish Goregaokar-14/+12
2015-02-25Rollup merge of #22635 - kmcallister:macros-chapter, r=steveklabnikManish Goregaokar-1/+1
2015-02-24std: Stabilize some `ptr` functionsAlex Crichton-14/+12
2015-02-24Use arrays instead of vectors in testsVadim Petrochenkov-20/+20
2015-02-24Fix fallout from correct stability handling in UFCS.Eduard Burtescu-1/+1
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