| Age | Commit message (Expand) | Author | Lines |
| 2013-08-11 | vec: optimize the Add implementation | Daniel Micay | -5/+14 |
| 2013-08-11 | disable 64-bit CheckedMul on 32-bit | Daniel Micay | -2/+4 |
| 2013-08-11 | add intrinsics for checked overflow add/sub/mul | Daniel Micay | -2/+503 |
| 2013-08-10 | auto merge of #8404 : stepancheg/rust/zero-unit-inline, r=alexcrichton | bors | -0/+2 |
| 2013-08-11 | Add a "peekable" iterator adaptor, with a peek() method that returns the next... | Simon Sapin | -0/+72 |
| 2013-08-11 | std::iterator: Rename .peek() to .inspect() | blake2-ppc | -19/+20 |
| 2013-08-10 | Merge branch 'trie-bound-iters' of https://github.com/dim-an/rust into rollup | Erick Tryzelaar | -0/+102 |
| 2013-08-10 | std: fix the non-stage0 str::raw::slice_bytes which broke in a merge | Erick Tryzelaar | -1/+1 |
| 2013-08-10 | std: Transform.find_ -> .find | Erick Tryzelaar | -6/+6 |
| 2013-08-10 | std: Iterator.len_ -> .len | Erick Tryzelaar | -8/+7 |
| 2013-08-10 | std: Iterator.last_ -> .last | Erick Tryzelaar | -4/+3 |
| 2013-08-10 | std: Iterator.chain_ -> .chain | Erick Tryzelaar | -10/+10 |
| 2013-08-10 | std: Iterator.flat_map_ -> .flat_map | Erick Tryzelaar | -5/+4 |
| 2013-08-10 | std: Iterator.take_ -> .take | Erick Tryzelaar | -29/+27 |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -49/+48 |
| 2013-08-10 | std: merge Iterator and IteratorUtil | Erick Tryzelaar | -280/+202 |
| 2013-08-10 | std: merge iterator::DoubleEndedIterator and DoubleEndedIteratorUtil | Erick Tryzelaar | -28/+15 |
| 2013-08-10 | Mass rename of .consume{,_iter}() to .move_iter() | Erick Tryzelaar | -67/+67 |
| 2013-08-09 | auto merge of #8296 : erickt/rust/remove-str-trailing-nulls, r=erickt | bors | -474/+993 |
| 2013-08-09 | Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing... | Erick Tryzelaar | -199/+637 |
| 2013-08-09 | auto merge of #8387 : brson/rust/nooldrt, r=brson | bors | -2119/+217 |
| 2013-08-09 | Remove the C++ runtime. Sayonara | Brian Anderson | -2119/+217 |
| 2013-08-09 | auto merge of #8176 : catamorphism/rust/rustpkg-extern-mod, r=catamorphism | bors | -2/+163 |
| 2013-08-09 | std/rustc/rustpkg/syntax: Support the `extern mod = ...` form | Tim Chevalier | -2/+163 |
| 2013-08-09 | auto merge of #8415 : brson/rust/newrt-local-heap-perf, r=pcwalton,brson | bors | -68/+92 |
| 2013-08-09 | Remove rtdebug_! and make rtdebug! work properly. | Corey Richardson | -12/+4 |
| 2013-08-09 | std: more windows fixes to os.rs and run.rs | Erick Tryzelaar | -4/+9 |
| 2013-08-09 | auto merge of #8369 : yichoi/rust/arm-test, r=sanxiyn | bors | -4/+4 |
| 2013-08-10 | std: add a Clone impl for HashSet. | Huon Wilson | -0/+26 |
| 2013-08-09 | Implement `lower_bound_iter`/`upper_bound_iter` for TrieMap/TrieSet | Dmitry Ermolov | -0/+102 |
| 2013-08-09 | Fix Ipv6Addr to_str for ::1:x.x.x.x addresses | Stepan Koltsov | -1/+8 |
| 2013-08-09 | std: Fix perf of local allocations in newsched | Brian Anderson | -68/+92 |
| 2013-08-09 | Remove redundant Ord method impls. | OGINO Masanori | -54/+3 |
| 2013-08-09 | std::tuple: Use != properly in Eq::ne for tuples | blake2-ppc | -1/+1 |
| 2013-08-08 | Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing... | Erick Tryzelaar | -274/+1840 |
| 2013-08-08 | auto merge of #8336 : stepancheg/rust/socket-addr-from-str, r=brson | bors | -70/+367 |
| 2013-08-08 | auto merge of #8356 : toddaaro/rust/ws, r=brson | bors | -63/+164 |
| 2013-08-09 | Add #[inline] to impl Zero for () | Stepan Koltsov | -0/+2 |
| 2013-08-08 | auto merge of #8385 : cmr/rust/big-rollup, r=alexcrichton | bors | -97/+135 |
| 2013-08-08 | Enabled workstealing in the scheduler. Previously we had one global work queu... | toddaaro | -63/+164 |
| 2013-08-08 | std::vec: Fix typo in fn ne | blake2-ppc | -1/+1 |
| 2013-08-08 | std::iterator::order test cases | blake2-ppc | -0/+47 |
| 2013-08-08 | std: Fix tuple lexicographical order | blake2-ppc | -14/+28 |
| 2013-08-08 | std: Fix Ord for Option, using iterator::order | blake2-ppc | -15/+18 |
| 2013-08-08 | std::vec: Use iterator::order functions for Eq, Ord, TotalOrd, TotalEq | blake2-ppc | -24/+22 |
| 2013-08-08 | std: Implement traits for the one-tuple | blake2-ppc | -20/+25 |
| 2013-08-08 | Add std::iterator::order with lexical ordering functions for sequences | blake2-ppc | -0/+110 |
| 2013-08-08 | std: more fixes for os.rs for windows | Erick Tryzelaar | -2/+3 |
| 2013-08-08 | auto merge of #8245 : alexcrichton/rust/fmt2, r=graydon | bors | -2/+1331 |
| 2013-08-07 | std: import HANDLE for os::list_dir for windows | Erick Tryzelaar | -0/+1 |