| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -557/+0 | |
| This only changes the directory names; it does not change the "real" metadata names. | ||||
| 2013-05-20 | Remove outdated function transmute_for_stage0 | Björn Steinbrink | -19/+15 | |
| The function was a workaround for bootstrapping that isn't required anymore and just degrades hashmap performance, as it doesn't get inlined cross-crate and turns a no-op into a call. | ||||
| 2013-05-19 | Register snapshots | Brian Anderson | -10/+0 | |
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -4/+4 | |
| 2013-05-13 | Remove re-exports from libcore/core.rc | Alex Crichton | -0/+2 | |
| Also fix up all the fallout elsewhere throughout core. It's really nice being able to have the prelude. | ||||
| 2013-05-09 | libstd: rename vec::each(var) to var.each | Youngmin Yoo | -1/+0 | |
| 2013-05-09 | libcore: rename vec::each(variable) to variable.each | Youngmin Yoo | -2/+2 | |
| 2013-05-08 | libcore: Fix tests. | Patrick Walton | -3/+3 | |
| 2013-05-08 | libcore: Remove mutable fields from hash | Patrick Walton | -85/+123 | |
| 2013-04-16 | libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ↵ | Huon Wilson | -152/+158 | |
| pub mod or pub fn). | ||||
| 2013-04-08 | Removing no longer needed unsafe blocks | Alex Crichton | -36/+26 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -22/+22 | |
| 2013-03-28 | Removing unused imports | Alex Crichton | -1/+1 | |
| 2013-03-26 | librustc: Remove all uses of the old `[T * N]` fixed-length vector syntax | Patrick Walton | -3/+3 | |
| 2013-03-26 | libcore: Change `[const T]` to `const [T]` everywhere | Patrick Walton | -3/+3 | |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -22/+20 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -22/+22 | |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -1/+1 | |
| are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations. | ||||
| 2013-03-06 | Finish de-implicit-selifizng libcore | Ben Striegel | -3/+2 | |
| 2013-03-05 | auto merge of #5233 : bstrie/rust/deimpselfcore, r=graydon | bors | -12/+13 | |
| 2013-03-04 | De-implicit-self libcore | Ben Striegel | -12/+13 | |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -1/+0 | |
| 2013-02-26 | Hoist macro defs out of inner function | John Clements | -29/+33 | |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -2/+2 | |
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -3/+3 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -4/+4 | |
| rs=implflipping | ||||
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -1/+1 | |
| 2013-02-13 | RIMOV core::hash | Ben Striegel | -2/+2 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -4/+0 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-02-03 | Converted libcore/uint-template.rs to the new string functions. | Marvin Löbel | -2/+2 | |
| - Moved ToStr implementation of unsigned integers to uint-template.rs. - Marked the `str()` function as deprecated. - Forwarded all conversion functions to `core::num::to_str_common()` and `core::num::from_str_common()`. - Fixed most places in the codebase where `to_str()` is being used. - Added uint-template to_str and from_str overflow tests. | ||||
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -1/+1 | |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -2/+5 | |
| contain at least two components. r=graydon | ||||
| 2012-12-24 | Convert core::io to use explicit self (for issue #4118 and issue #2004) | gareth | -6/+6 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-29 | No longer parse the delimiters of the RHS of a macro as part of the expansion. | Paul Stansifer | -2/+2 | |
| 2012-10-27 | Remove un-needed comparisons, suppress warnings | Tim Chevalier | -2/+2 | |
| 2012-10-20 | Remove old fixed-length vector syntax | Ben Striegel | -68/+68 | |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -1/+1 | |
| 2012-09-26 | libcore: De-export cleanup, cmath, future, gc, hash, iter-trait, mutable, ↵ | Patrick Walton | -16/+13 | |
| and private | ||||
| 2012-09-19 | Remove final bits of residual hokey-hash functions. Close #1616. | Graydon Hoare | -67/+20 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -2/+6 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -6/+2 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -2/+6 | |
| 2012-09-18 | Replace uses of 'unchecked' with 'unsafe' | Brian Anderson | -5/+5 | |
| 2012-09-12 | Document IterBytes, Eq, Cmp, Hash. Close #3449. | Graydon Hoare | -1/+24 | |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -2/+2 | |
| also, change DVec() to work with imm vectors rather than mut ones | ||||
| 2012-09-10 | Make more moves explicit in libcore | Tim Chevalier | -2/+2 | |
| 2012-09-07 | Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes. | Graydon Hoare | -15/+15 | |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -9/+9 | |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -3/+3 | |
