about summary refs log tree commit diff
path: root/src/libstd/vec.rs
AgeCommit message (Expand)AuthorLines
2013-07-12Account for possible 0-sized elements in vector iteratorsAlex Crichton-13/+68
2013-07-12Remove the global 'vec::to_owned' functionAlex Crichton-5/+0
2013-07-12extend the iterator tutorialDaniel Micay-1/+1
2013-07-11auto merge of #7707 : thestinger/rust/double, r=cmrbors-54/+35
2013-07-11auto merge of #7708 : bcully/rust/warnings, r=thestingerbors-1/+3
2013-07-11vec: rm inline(never) hackDaniel Micay-13/+2
2013-07-11iterator: add DoubleEndedIterator conceptDaniel Micay-41/+33
2013-07-10remove unused importsBrendan Cully-1/+3
2013-07-10Add a `mut_split()` method for dividing one `&mut [T]` into twoNiko Matsakis-0/+37
2013-07-10Merge pull request #7682 from thestinger/vecDaniel Micay-1/+20
2013-07-09vec::with_capacity: do one alloc for non-managedDaniel Micay-1/+20
2013-07-09auto merge of #7265 : brson/rust/io-upstream, r=brsonbors-10/+6
2013-07-09auto merge of #7657 : thestinger/rust/rollup, r=thestingerbors-1/+1
2013-07-09Fix typo in docs for MutableCloneableVectorKevin Ballard-1/+1
2013-07-09auto merge of #7117 : jensnockert/rust/freestanding, r=cmrbors-2/+2
2013-07-08auto merge of #7578 : alexcrichton/rust/overflow, r=thestingerbors-1/+14
2013-07-08TidyBrian Anderson-4/+2
2013-07-08Merge remote-tracking branch 'mozilla/master'Brian Anderson-906/+652
2013-07-08Correct merge errorsNiko Matsakis-1/+1
2013-07-08Correct merge failuresNiko Matsakis-3/+3
2013-07-08Patch up some code that was using irrefutable patterns incorrectly.Niko Matsakis-3/+3
2013-07-08update ptr intrinsics and rewrite vec routines to be more correct.Niko Matsakis-40/+94
2013-07-08 Replaces the free-standing functions in f32, &c.Jens Nockert-2/+2
2013-07-08auto merge of #7605 : thestinger/rust/vec, r=Aatchbors-20/+7
2013-07-08vec: make vec_reserve_shared_actual privateDaniel Micay-20/+7
2013-07-07remove some method resolve workaroundsDaniel Micay-2/+2
2013-07-07auto merge of #7602 : blake2-ppc/rust/vec-pop-opt, r=cmrbors-36/+78
2013-07-05vec: Add .shift_opt() -> Option<T>blake2-ppc-12/+40
2013-07-05vec: Add .pop_opt() -> Option<T>blake2-ppc-24/+38
2013-07-05Change signature of Iterator.size_hintKevin Ballard-14/+14
2013-07-03Merge pull request #7565 from Blei/fix-rev-size-hintDaniel Micay-1/+16
2013-07-03Fail when a vec::reserve is too largeAlex Crichton-1/+14
2013-07-03Merge remote-tracking branch 'mozilla/master'Brian Anderson-1606/+820
2013-07-04Convert vec::{as_imm_buf, as_mut_buf} to methods.Huon Wilson-54/+57
2013-07-04Convert vec::windowed to an external iterator, and add an n-at-a-time chunk i...Huon Wilson-45/+132
2013-07-04Convert vec::{split, splitn, rsplit, rsplitn} to external iterators.Huon Wilson-263/+158
2013-07-04Remove standalone comparison functions in vec, make the trait impls better.Huon Wilson-150/+133
2013-07-04Remove vec::reversed, replaced by iterators.Huon Wilson-27/+3
2013-07-04Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterat...Huon Wilson-215/+0
2013-07-04Implement consuming iterators for ~[], remove vec::{consume, consume_reverse,...Huon Wilson-126/+94
2013-07-03vec: Fix size_hint() of reverse iteratorsPhilipp Brüschweiler-1/+16
2013-07-03auto merge of #7474 : Seldaek/rust/clean-iter, r=thestingerbors-10/+0
2013-07-01auto merge of #7521 : thestinger/rust/vec, r=Aatchbors-12/+14
2013-06-30auto merge of #7487 : huonw/rust/vec-kill, r=cmrbors-590/+251
2013-06-30vec: implement exchange vector reserve in RustDaniel Micay-12/+14
2013-07-01Move most iter functionality to extra, fixes #7343Jordi Boggiano-10/+0
2013-06-30auto merge of #7495 : thestinger/rust/exchange, r=cmrbors-1/+29
2013-06-30Remove vec::{map, mapi, zip_map} and the methods, except for .map, since thisHuon Wilson-113/+18
2013-06-30Convert vec::{grow, grow_fn, grow_set} to methods.Huon Wilson-63/+46
2013-06-30Convert vec::dedup to a method.Huon Wilson-39/+34