| Age | Commit message (Expand) | Author | Lines |
| 2013-07-08 | auto merge of #7604 : apasel422/rust/peek, r=huonw | bors | -0/+65 |
| 2013-07-08 | auto merge of #7605 : thestinger/rust/vec, r=Aatch | bors | -21/+33 |
| 2013-07-08 | remove headers from exchange allocations | Daniel Micay | -3/+20 |
| 2013-07-08 | Merge pull request #7595 from thestinger/iterator | Daniel Micay | -19/+19 |
| 2013-07-08 | add a temporary vector_exchange_malloc lang item | Daniel Micay | -0/+8 |
| 2013-07-08 | vec: make vec_reserve_shared_actual private | Daniel Micay | -20/+7 |
| 2013-07-07 | auto merge of #7497 : alexcrichton/rust/issue-7394, r=huonw | bors | -2/+8 |
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -19/+19 |
| 2013-07-07 | iterator: Add `IteratorUtil::peek_` method | Andrew Paseltiner | -0/+65 |
| 2013-07-07 | auto merge of #7629 : thestinger/rust/rope, r=graydon | bors | -2/+1 |
| 2013-07-07 | auto merge of #7602 : blake2-ppc/rust/vec-pop-opt, r=cmr | bors | -36/+78 |
| 2013-07-06 | auto merge of #7570 : kballard/rust/iterator-size-hint, r=thestinger | bors | -26/+138 |
| 2013-07-06 | remove extra::rope | Daniel Micay | -2/+1 |
| 2013-07-06 | auto merge of #7194 : jensnockert/rust/endian, r=cmr | bors | -0/+14 |
| 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 | Implement .size_hint() on the remaining Iterator adaptors | Kevin Ballard | -1/+118 |
| 2013-07-05 | Change signature of Iterator.size_hint | Kevin Ballard | -27/+22 |
| 2013-07-04 | auto merge of #7549 : sfackler/rust/docs, r=msullivan | bors | -1/+2 |
| 2013-07-03 | Merge pull request #7565 from Blei/fix-rev-size-hint | Daniel Micay | -1/+16 |
| 2013-07-04 | Convert vec::{as_imm_buf, as_mut_buf} to methods. | Huon Wilson | -73/+78 |
| 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 | -155/+139 |
| 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 | -218/+3 |
| 2013-07-04 | Implement consuming iterators for ~[], remove vec::{consume, consume_reverse,... | Huon Wilson | -133/+101 |
| 2013-07-03 | vec: Fix size_hint() of reverse iterators | Philipp Brüschweiler | -1/+16 |
| 2013-07-03 | auto merge of #7523 : huonw/rust/uppercase-statics-lint, r=cmr | bors | -56/+70 |
| 2013-07-03 | auto merge of #7474 : Seldaek/rust/clean-iter, r=thestinger | bors | -313/+6 |
| 2013-07-01 | Small documentation changes | Steven Fackler | -1/+2 |
| 2013-07-01 | auto merge of #7521 : thestinger/rust/vec, r=Aatch | bors | -21/+32 |
| 2013-07-01 | rustc: add a lint to enforce uppercase statics. | Huon Wilson | -56/+70 |
| 2013-06-30 | auto merge of #7487 : huonw/rust/vec-kill, r=cmr | bors | -614/+276 |
| 2013-06-30 | pass exchange_malloc an alignment, not a tydesc | Daniel Micay | -7/+2 |
| 2013-06-30 | global_heap: inline get_box_size and align_to | Daniel Micay | -0/+2 |
| 2013-06-30 | vec: implement exchange vector reserve in Rust | Daniel Micay | -12/+14 |
| 2013-06-30 | global_heap: inline malloc_raw and add realloc_raw | Daniel Micay | -2/+14 |
| 2013-06-30 | auto merge of #7517 : brson/rust/0.7, r=brson | bors | -1/+1 |
| 2013-07-01 | Move most iter functionality to extra, fixes #7343 | Jordi Boggiano | -313/+6 |
| 2013-06-30 | Bump version from 0.7-pre to 0.7 | Brian Anderson | -1/+1 |
| 2013-06-30 | auto merge of #7495 : thestinger/rust/exchange, r=cmr | bors | -158/+111 |
| 2013-06-30 | add a closure_exchange_malloc lang item | Daniel Micay | -0/+14 |
| 2013-06-30 | managed: rm RC_EXCHANGE_UNIQUE constant | Daniel Micay | -1/+0 |
| 2013-06-30 | stop initializing ref_count in exchange_alloc | Daniel Micay | -1/+21 |
| 2013-06-30 | Specialize to_str_common for floats/integers in strconv | Alex Crichton | -192/+239 |
| 2013-06-30 | Change char::escape_{default,unicode} to take callbacks instead of allocating | Alex Crichton | -52/+61 |
| 2013-06-30 | Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this | Huon Wilson | -118/+26 |
| 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 | -40/+35 |