| Age | Commit message (Expand) | Author | Lines |
| 2012-09-26 | core: Replace map/map_default with map_ref/map_default_ref | Brian Anderson | -2/+2 |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -76/+113 |
| 2012-09-25 | Demode iter-trait | Tim Chevalier | -3/+3 |
| 2012-09-25 | use + mode for (almost) everything when not using legacy modes | Niko Matsakis | -1/+1 |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -86/+0 |
| 2012-09-23 | core: Demode option | Brian Anderson | -2/+2 |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -7/+8 |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -117/+93 |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under #[l... | Graydon Hoare | -1/+8 |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -9/+100 |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -2/+2 |
| 2012-09-19 | Remove final bits of residual hokey-hash functions. Close #1616. | Graydon Hoare | -6/+0 |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -172/+47 |
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially dem... | Niko Matsakis | -24/+136 |
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -136/+24 |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -19/+19 |
| 2012-09-18 | core: Move Exclusive and SharedMutableState to the private mod | Brian Anderson | -2/+2 |
| 2012-09-18 | Make vec::view a method too. | Gareth Daniel Smith | -4/+6 |
| 2012-09-18 | Replace uses of 'unchecked' with 'unsafe' | Brian Anderson | -19/+19 |
| 2012-09-15 | vec::u8 => vec::bytes (#3444) | Erick Tryzelaar | -2/+2 |
| 2012-09-14 | Add core::reflect, start migrating core::repr to use it. Tidy up various Repr... | Graydon Hoare | -11/+17 |
| 2012-09-13 | Fix implicit-instantiation of non-implicitly-copyable warnings. | Graydon Hoare | -3/+3 |
| 2012-09-13 | s/vec::as_buf/vec::as_imm_buf/, fix comment, remove set.rs | Niko Matsakis | -19/+18 |
| 2012-09-13 | make iter::position() not require Eq | Niko Matsakis | -3/+3 |
| 2012-09-12 | Rename vec::unsafe to vec::raw | Brian Anderson | -33/+33 |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -43/+98 |
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -4/+4 |
| 2012-09-11 | Merge pull request #3440 from jld/vec-dedup | Brian Anderson | -0/+81 |
| 2012-09-10 | Make moves explicit in task; also make option::unwrap take its argument by move | Tim Chevalier | -1/+1 |
| 2012-09-10 | Make moves explicit in vec | Tim Chevalier | -52/+52 |
| 2012-09-10 | Add vec::dedup for in-place consecutive duplicate element removal. | Jed Davis | -0/+81 |
| 2012-09-09 | Rename variables that clash with keywords | Brian Anderson | -3/+3 |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -45/+45 |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -9/+9 |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -4/+4 |
| 2012-09-02 | Camel case core::ops | Brian Anderson | -2/+2 |
| 2012-09-02 | Silence non-implicitly-copyable-typarams in coretest | Brian Anderson | -4/+4 |
| 2012-09-02 | core: deny(vecs_implicity_copyable) | Brian Anderson | -5/+7 |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -15/+15 |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -2/+2 |
| 2012-08-30 | libcore: vec::u8::hash is pure. | Erick Tryzelaar | -1/+1 |
| 2012-08-30 | libcore: rewrite vec::unsafe::from_buf in pure rust | Erick Tryzelaar | -7/+5 |
| 2012-08-30 | Start moving core::hash to support a Hash trait. Add to_bytes::IterBytes trait. | Graydon Hoare | -4/+4 |
| 2012-08-30 | cargo: Fix some lack of knowledge of basic algebraic identities | Patrick Walton | -17/+3 |
| 2012-08-29 | rustc: Make `<=`, `>=`, and `>` use traits as well | Patrick Walton | -9/+39 |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -34/+46 |
| 2012-08-29 | core: Demode int/uint mods | Brian Anderson | -2/+2 |
| 2012-08-29 | Add vec::truncate, for efficiently shortening a vector. | Jed Davis | -0/+24 |
| 2012-08-27 | make rand code use slices | Niko Matsakis | -1/+1 |
| 2012-08-27 | libcore: Replace a bunch of "== None" with ".is_none()". | Patrick Walton | -43/+43 |