| Age | Commit message (Expand) | Author | Lines |
| 2013-07-10 | Merge pull request #7682 from thestinger/vec | Daniel Micay | -1/+20 |
| 2013-07-09 | vec::with_capacity: do one alloc for non-managed | Daniel Micay | -1/+20 |
| 2013-07-09 | auto merge of #7265 : brson/rust/io-upstream, r=brson | bors | -10/+6 |
| 2013-07-09 | auto merge of #7657 : thestinger/rust/rollup, r=thestinger | bors | -1/+1 |
| 2013-07-09 | Fix typo in docs for MutableCloneableVector | Kevin Ballard | -1/+1 |
| 2013-07-09 | auto merge of #7117 : jensnockert/rust/freestanding, r=cmr | bors | -2/+2 |
| 2013-07-08 | auto merge of #7578 : alexcrichton/rust/overflow, r=thestinger | bors | -1/+14 |
| 2013-07-08 | Tidy | Brian Anderson | -4/+2 |
| 2013-07-08 | Merge remote-tracking branch 'mozilla/master' | Brian Anderson | -906/+652 |
| 2013-07-08 | Correct merge errors | Niko Matsakis | -1/+1 |
| 2013-07-08 | Correct merge failures | Niko Matsakis | -3/+3 |
| 2013-07-08 | Patch up some code that was using irrefutable patterns incorrectly. | Niko Matsakis | -3/+3 |
| 2013-07-08 | update 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-08 | auto merge of #7605 : thestinger/rust/vec, r=Aatch | bors | -20/+7 |
| 2013-07-08 | vec: make vec_reserve_shared_actual private | Daniel Micay | -20/+7 |
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -2/+2 |
| 2013-07-07 | auto merge of #7602 : blake2-ppc/rust/vec-pop-opt, r=cmr | bors | -36/+78 |
| 2013-07-05 | vec: Add .shift_opt() -> Option<T> | blake2-ppc | -12/+40 |
| 2013-07-05 | vec: Add .pop_opt() -> Option<T> | blake2-ppc | -24/+38 |
| 2013-07-05 | Change signature of Iterator.size_hint | Kevin Ballard | -14/+14 |
| 2013-07-03 | Merge pull request #7565 from Blei/fix-rev-size-hint | Daniel Micay | -1/+16 |
| 2013-07-03 | Fail when a vec::reserve is too large | Alex Crichton | -1/+14 |
| 2013-07-03 | Merge remote-tracking branch 'mozilla/master' | Brian Anderson | -1606/+820 |
| 2013-07-04 | Convert vec::{as_imm_buf, as_mut_buf} to methods. | Huon Wilson | -54/+57 |
| 2013-07-04 | Convert vec::windowed to an external iterator, and add an n-at-a-time chunk i... | Huon Wilson | -45/+132 |
| 2013-07-04 | Convert vec::{split, splitn, rsplit, rsplitn} to external iterators. | Huon Wilson | -263/+158 |
| 2013-07-04 | Remove standalone comparison functions in vec, make the trait impls better. | Huon Wilson | -150/+133 |
| 2013-07-04 | Remove vec::reversed, replaced by iterators. | Huon Wilson | -27/+3 |
| 2013-07-04 | Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterat... | Huon Wilson | -215/+0 |
| 2013-07-04 | Implement consuming iterators for ~[], remove vec::{consume, consume_reverse,... | Huon Wilson | -126/+94 |
| 2013-07-03 | vec: Fix size_hint() of reverse iterators | Philipp Brüschweiler | -1/+16 |
| 2013-07-03 | auto merge of #7474 : Seldaek/rust/clean-iter, r=thestinger | bors | -10/+0 |
| 2013-07-01 | auto merge of #7521 : thestinger/rust/vec, r=Aatch | bors | -12/+14 |
| 2013-06-30 | auto merge of #7487 : huonw/rust/vec-kill, r=cmr | bors | -590/+251 |
| 2013-06-30 | vec: implement exchange vector reserve in Rust | Daniel Micay | -12/+14 |
| 2013-07-01 | Move most iter functionality to extra, fixes #7343 | Jordi Boggiano | -10/+0 |
| 2013-06-30 | auto merge of #7495 : thestinger/rust/exchange, r=cmr | bors | -1/+29 |
| 2013-06-30 | Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this | Huon Wilson | -113/+18 |
| 2013-06-30 | Convert vec::{grow, grow_fn, grow_set} to methods. | Huon Wilson | -63/+46 |
| 2013-06-30 | Convert vec::dedup to a method. | Huon Wilson | -39/+34 |
| 2013-06-30 | Convert vec::{bsearch, bsearch_elem} to methods. | Huon Wilson | -79/+88 |
| 2013-06-30 | Convert vec::{reverse, swap} to methods. | Huon Wilson | -42/+44 |
| 2013-06-30 | Convert vec::{rposition, rposition_elem, position_elem, contains} to methods. | Huon Wilson | -44/+24 |
| 2013-06-30 | Remove vec::[r]position_between, replaced by slices & iterators. | Huon Wilson | -102/+8 |
| 2013-06-30 | Remove vec::{rfind, rfind_between, find_between}, replaced by slices and iter... | Huon Wilson | -119/+0 |
| 2013-06-30 | vec: use contains_managed instead of box header | Daniel Micay | -1/+29 |
| 2013-06-29 | minor vec cleanup | Daniel Micay | -10/+6 |
| 2013-06-29 | Removing a lot of usage of '&const' | Alex Crichton | -52/+20 |
| 2013-06-29 | 'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f... | Ben Blum | -4/+4 |