| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-11 | Make to_str pure and fix const parameters for str-mutating functions | Tim Chevalier | -1/+1 | |
| Two separate changes that got intertwined (sorry): Make to_str pure. Closes #3691 In str, change functions like push_char to take an &mut str instead of an &str. Closes #3710 | ||||
| 2012-10-01 | rename vec::raw::form_slice to buf_as_slice | Erick Tryzelaar | -2/+1 | |
| This matches the str::raw function. | ||||
| 2012-09-28 | Finish de-exporting uint modules. Part of #3583. | Graydon Hoare | -14/+0 | |
| 2012-09-26 | libcore: Partially de-export int-template and uint-template | Patrick Walton | -35/+36 | |
| 2012-09-25 | Demode Num trait and impls | Tim Chevalier | -5/+5 | |
| 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 | -16/+0 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+16 | |
| 2012-09-15 | int/uint parse_buf => parse_bytes (#3444) | Erick Tryzelaar | -13/+13 | |
| 2012-09-13 | s/vec::as_buf/vec::as_imm_buf/, fix comment, remove set.rs | Niko Matsakis | -2/+2 | |
| hat tip to @jruderman | ||||
| 2012-09-12 | Rename str::unsafe to str::raw | Brian Anderson | -1/+1 | |
| 2012-09-12 | Rename vec::unsafe to vec::raw | Brian Anderson | -1/+1 | |
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -2/+2 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -3/+2 | |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -3/+3 | |
| 2012-09-03 | libcore: Add a from_str trait | Patrick Walton | -0/+5 | |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -15/+15 | |
| Closes #3302 | ||||
| 2012-08-29 | rustc: Make `<=`, `>=`, and `>` use traits as well | Patrick Walton | -3/+4 | |
| 2012-08-29 | core: Demode int/uint mods | Brian Anderson | -4/+8 | |
| 2012-08-27 | libcore: Replace a bunch of "== None" with ".is_none()". | Patrick Walton | -5/+5 | |
| Generally, "== None" calls into the shape glue, and it's also more useful. | ||||
| 2012-08-27 | libcore: Fix build harder | Patrick Walton | -12/+8 | |
| 2012-08-27 | libcore: Fix core test | Patrick Walton | -8/+12 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -29/+29 | |
| 2012-08-23 | Rename str::bytes to str::to_bytes | Tim Chevalier | -11/+11 | |
| Closes #3245 | ||||
| 2012-08-23 | Make a bunch more of the iteration functions/methods marked pure. Closes #3253. | Michael Sullivan | -2/+2 | |
| 2012-08-17 | rustc: Remove a few allocations from metadata. Shaves a few milliseconds off ↵ | Patrick Walton | -1/+1 | |
| compilation of hello world. | ||||
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -3/+3 | |
| 2012-08-14 | Make Num::from_int a static method | Tim Chevalier | -1/+1 | |
| 2012-08-13 | core: Camel case some lesser-used modules | Brian Anderson | -4/+4 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -5/+5 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -2/+2 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -4/+4 | |
| 2012-08-02 | Cleanups in the int and uint templates. | Graydon Hoare | -28/+32 | |
| 2012-08-02 | Remove modes from map API and replace with regions. | Niko Matsakis | -12/+12 | |
| API is (for now) mostly by value, there are options to use it by reference if you like. Hash and equality functions must be pure and by reference (forward looking to the day when something like send_map becomes the standard map). | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -18/+18 | |
| 2012-07-27 | core: Make #fmt pure | Brian Anderson | -2/+2 | |
| 2012-07-26 | core: Mark a bunch of numeric functions as pure | Patrick Walton | -11/+11 | |
| 2012-07-25 | range() is pure | Niko Matsakis | -1/+1 | |
| 2012-07-24 | Update some str functions to slices, merge as_buf and unpack_slice. | Graydon Hoare | -2/+2 | |
| 2012-07-24 | Add `5.timesi() |idx| { ... }` | Paul Stansifer | -1/+14 | |
| 2012-07-17 | rustc: Implement and enforce instance coherence | Patrick Walton | -0/+1 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -29/+29 | |
| #2907. | ||||
| 2012-07-05 | A new `times` method on numeric types | Ben Striegel | -1/+25 | |
| This method is intended to elegantly subsume two common iteration functions. The first is `iter::range`, which is used identically to the method introduced in this commit, but currently works only on uints. The second is a common case of `{int, i8, uint, etc.}::range`, in the case where the inductive variable is ignored. Compare the usage of the three: ``` for iter::range(100u) { // do whatever } for int::range(0, 100) |_i| { // do whatever } for 100.times { // do whatever } ``` I feel that the latter reads much more nicely than the first two approaches, and unlike the first two the new method allows the user to ignore the specific type of the number (ineed, if we're throwing away the inductive variable, who cares what type it is?). A minor benefit is that this new method will be somewhat familiar to users of Ruby, from which we borrow the name "times". | ||||
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -25/+25 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -3/+3 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -3/+3 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -2/+2 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -1/+1 | |
| 2012-06-25 | Remove redundant 'extension' mods from numeric mods | Brian Anderson | -14/+11 | |
| 2012-06-25 | Automatically export methods on core numeric types | Ben Striegel | -11/+13 | |
| Each numeric type now contains an extensions module that is automatically exported. At the moment each extensions module contains only the impl for the `num::num` iface. Other impls soon to follow (hopefully). | ||||
