about summary refs log tree commit diff
path: root/src/libcollections/vec.rs
AgeCommit message (Expand)AuthorLines
2014-12-08auto merge of #19574 : erickt/rust/vec-reserve, r=alexcrichtonbors-4/+5
2014-12-08auto merge of #19306 : steveklabnik/rust/gh19269, r=nikomatsakis,brsonbors-8/+2
2014-12-06libcollections: remove unnecessary `as_mut_slice()` callsJorge Aparicio-6/+6
2014-12-06libcollections: remove unnecessary `as_slice()` callsJorge Aparicio-9/+8
2014-12-05collections: dramatically speed up Vec::reserve with magicErick Tryzelaar-4/+5
2014-12-03Deprecate EquivJorge Aparicio-1/+2
2014-12-03Fix falloutJorge Aparicio-4/+4
2014-12-03Overload the `==` operatorJorge Aparicio-4/+59
2014-11-29Add test for #18908Tobias Bucher-0/+29
2014-11-26rollup merge of #19308: thestinger/oomAlex Crichton-0/+1
2014-11-26auto merge of #19176 : aturon/rust/stab-iter, r=alexcrichtonbors-1/+1
2014-11-25Fallout from stabilizationAaron Turon-1/+1
2014-11-25Deprecate MaybeOwned[Vector] in favor of CowJorge Aparicio-0/+22
2014-11-25vec: add missing out-of-memory checkDaniel Micay-0/+1
2014-11-25Update documentation for from_raw_partsSteve Klabnik-8/+2
2014-11-23Rename unwrap functions to into_innerAlex Crichton-1/+5
2014-11-23auto merge of #19152 : alexcrichton/rust/issue-17863, r=aturonbors-9/+19
2014-11-22std: Align `raw` modules with unsafe conventionsAlex Crichton-9/+19
2014-11-21auto merge of #18908 : tbu-/rust/pr_mapinplace_fixzerosized, r=alexcrichtonbors-1/+4
2014-11-20libcore: DST-ify AsSliceAaron Turon-2/+3
2014-11-17Fix fallout from coercion removalNick Cameron-8/+8
2014-11-16rollup merge of #18976: bjz/rfc369-numericsJakub Bukaj-0/+7
2014-11-16rollup merge of #18970: aturon/fixup-stableJakub Bukaj-1/+0
2014-11-16Move ToString to collections::stringBrendan Zabarauskas-0/+7
2014-11-14libs: fix #[stable] inheritance falloutAaron Turon-1/+0
2014-11-14auto merge of #18880 : barosl/rust/doc-fail-to-panic, r=alexcrichtonbors-4/+4
2014-11-14auto merge of #18827 : bjz/rust/rfc369-numerics, r=alexcrichtonbors-7/+7
2014-11-12Fix `Vec::map_in_place` not doing what is written in the commentTobias Bucher-1/+4
2014-11-12Register new snapshotsAlex Crichton-14/+0
2014-11-13Remove lots of numeric traits from the preludesBrendan Zabarauskas-1/+1
2014-11-13Move checked arithmetic operators into Int traitBrendan Zabarauskas-5/+5
2014-11-13Create UnsignedInt trait and deprecate free functionsBrendan Zabarauskas-2/+2
2014-11-12Fix remaining documentation to reflect fail!() -> panic!()Barosl Lee-4/+4
2014-11-08auto merge of #18475 : gamazeps/rust/toExtend, r=alexcrichtonbors-2/+2
2014-11-08Renamed Extendable to Extendgamazeps-2/+2
2014-11-07Remove unnecessary `.to_string()`s from `Vec.swap_remove`'s doc example.Utkarsh Kukreti-6/+5
2014-11-06rollup merge of #18605 : Gankro/collect-fruitAlex Crichton-77/+74
2014-11-06Implement low-hanging fruit of collection conventionsAlexis Beingessner-77/+74
2014-11-06Prelude: rename and consolidate extension traitsAaron Turon-2/+2
2014-11-05Fix fallout of DSTifying PartialEq, PartialOrd, Eq, OrdJorge Aparicio-0/+14
2014-11-05Add impls of the comparison operators for fixed-length arrays of lengths 0......Niko Matsakis-3/+3
2014-11-05Repair various cases where values of distinct types were being operatedNiko Matsakis-1/+1
2014-11-01bubble up out-of-memory errors from liballocDaniel Micay-0/+3
2014-11-01collections: Remove all collections traitsAlex Crichton-71/+96
2014-10-30rollup merge of #18445 : alexcrichton/index-mutAlex Crichton-12/+4
2014-10-30rollup merge of #18443 : alexcrichton/deref-vec-and-stringAlex Crichton-363/+20
2014-10-30collections: Enable IndexMut for some collectionsAlex Crichton-12/+4
2014-10-29collections: impl Deref for Vec/StringAlex Crichton-363/+20
2014-10-29Rename fail! to panic!Steve Klabnik-21/+21
2014-10-28auto merge of #18254 : areski/rust/pr-fix-vec-doc-example, r=alexcrichtonbors-2/+8