| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -33/+21 | |
| 2012-06-29 | Get rid of basically all of the remaining old style vecs in tests. | Michael Sullivan | -53/+62 | |
| 2012-06-27 | More keyword paring and migration in runtime, docs, code modes. | Graydon Hoare | -20/+23 | |
| 2012-06-22 | Remove section on resources from tutorial; add a todo to cover classes | Tim Chevalier | -21/+2 | |
| 2012-06-20 | doc: add information about suffix inference to tutorial and manual. | Lindsey Kuper | -6/+51 | |
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -13/+0 | |
| 2012-06-08 | remove alias analysis and replace with borrowck | Niko Matsakis | -77/+1 | |
| This reverts commit 7ef825bb607c4e934c92bd0b73ecbc4c24f3286b. | ||||
| 2012-06-07 | Revert "remove alias analysis and replace with borrowck" | Brian Anderson | -1/+77 | |
| 18s perf regression compiling rustc with opts This reverts commit 7f6ee0ce0df8af4c21b065cb49b95079ae643f77. | ||||
| 2012-06-07 | remove alias analysis and replace with borrowck | Niko Matsakis | -77/+1 | |
| cc #2540 | ||||
| 2012-06-02 | make vec fns/methods take imm slices. | Niko Matsakis | -4/+3 | |
| this also repairs the unsoundness in typing of unpack_slice, which was silently converting a const ptr to an imm one. | ||||
| 2012-05-29 | tutorial: Consistent metavariable for types. Closes #2461. | Lindsey Kuper | -17/+17 | |
| 2012-05-29 | tutorial: Minor cleanup. | Lindsey Kuper | -14/+15 | |
| 2012-05-23 | Update the tutorial with the new shift behaviors. | Michael Sullivan | -5/+5 | |
| 2012-05-16 | doc: Fix `as` description in tutorial | Brian Anderson | -5/+5 | |
| 2012-05-15 | doc: remove duplicate words. Thanks, Matt Might! | Lindsey Kuper | -1/+1 | |
| 2012-05-10 | Remove `do ... while` loops from the tests and docs. | Paul Stansifer | -14/+12 | |
| 2012-04-23 | Mention lazy evaluation of log arguments in tutorial | Tim Chevalier | -1/+5 | |
| 2012-04-18 | Describe new for construct in the tutorial | Marijn Haverbeke | -5/+48 | |
| Closes #2141 | ||||
| 2012-04-11 | Add description of by-move mode. | Graydon Hoare | -0/+7 | |
| 2012-04-06 | Re-rename option functions | Tim Chevalier | -1/+1 | |
| get_with_default (nee from_maybe) => get_default with_option (nee maybe) => map_default with_option_do (nee may) => iter As per discussion of 21be1379d561b6679a8a2ea47dce88f948c5acca | ||||
| 2012-04-06 | Remove support for old-style for | Marijn Haverbeke | -23/+10 | |
| Closes #1619 | ||||
| 2012-04-05 | Documentation only: update tutorial to mention --lib only for single source ↵ | Tim Chevalier | -4/+7 | |
| files In the tutorial, use the crate_type attribute when discussing crate files that are libraries, and only refer to the --lib files when talking about making a single source file into a library. Closes #2070. | ||||
| 2012-04-02 | Rename some core::option functions | Tim Chevalier | -1/+1 | |
| from_maybe => get_with_default maybe => with_option may => with_option_do I know these names are kind of ridiculous, but it's the best I could think of. Feel free to bikeshed. Closes #2081 | ||||
| 2012-04-02 | doc: Abbreviate Thursday as 'th', not 'do' | Brian Anderson | -1/+1 | |
| 2012-04-01 | doc: Tutorial fixes | Brian Anderson | -8/+8 | |
| Thanks to Mohd. Bilal Husain | ||||
| 2012-03-26 | Bulk-edit mutable -> mut. | Graydon Hoare | -17/+17 | |
| 2012-03-25 | str::to_chars -> str::chars | Jacob Parker | -1/+1 | |
| 2012-03-22 | make --enforce-mut-vars always on, add mut annotations to remaining files | Niko Matsakis | -18/+21 | |
| 2012-03-20 | doc: Switch the tutorial to pandoc's method of tagging code blocks | Brian Anderson | -32/+16 | |
| Instead of '## tag', it's '~~~ {.tag}' | ||||
| 2012-03-20 | doc: Fix external links in tutorial | Brian Anderson | -4/+2 | |
| 2012-03-18 | core: Rename vec::position_elt to position_elem | Brian Anderson | -2/+2 | |
| 2012-03-13 | Name types after their modules instead of 't' | Brian Anderson | -6/+6 | |
| 2012-03-12 | Libc/os/run/rand/io reorganization. Close #1373. Close #1638. | Graydon Hoare | -33/+32 | |
| - Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os. | ||||
| 2012-03-10 | doc: Update tutorial for task API changes | Brian Anderson | -6/+5 | |
| 2012-02-20 | core: New task API | Brian Anderson | -44/+40 | |
| 2012-02-14 | tutorial: Mention how the destructor works in the section on resources. ↵ | Patrick Walton | -4/+5 | |
| Closes #1615. | ||||
| 2012-02-05 | Merge remote-tracking branch 'erickt/master' | Brian Anderson | -2/+2 | |
| Conflicts: src/libcore/vec.rs src/libstd/getopts.rs | ||||
| 2012-02-05 | Add missing 'use std' in tutorial example | Marijn Haverbeke | -0/+1 | |
| 2012-01-30 | Remove ternary operator | Paul Woolcock | -7/+0 | |
| `expr_ternary`, `ternary_to_if`, and all parses & lexer definitions have been removed. | ||||
| 2012-01-28 | core: rename vec::position* functions | Erick Tryzelaar | -2/+2 | |
| Almost all of the vec functions that predicates don't have a corresponding function that takes a single element, so this commit renames the common fn usecase to be the default. | ||||
| 2012-01-26 | tutorial: Fix types in gettimeofday example. Closes #1657 | Brian Anderson | -3/+5 | |
| 2012-01-25 | In the tutorial install directions, mention that you may need to sudo make ↵ | Tim Chevalier | -3/+6 | |
| install | ||||
| 2012-01-25 | Remove reference to tags, replace enums. | Joe Pletcher | -2/+2 | |
| 2012-01-23 | Remove mention of Windows installer from tutorial | Brian Anderson | -7/+5 | |
| We don't want users to hurt themselves, since the installer has a bug in 0.1 that could possibly corrupt %PATH% Conflicts: doc/tutorial.md | ||||
| 2012-01-23 | tutorial: Remove mention of windows installer | Brian Anderson | -19/+8 | |
| 2012-01-21 | tutorial: Make the comm examples pass | Brian Anderson | -4/+7 | |
| 2012-01-21 | tutorial: Un-xfail some working examples | Brian Anderson | -3/+0 | |
| 2012-01-21 | doc: Fix typo | Taras Shpot | -1/+1 | |
| 2012-01-20 | build: Run tutorial tests | Brian Anderson | -1/+10 | |
| 2012-01-20 | Typo fixes. | Lindsey Kuper | -5/+4 | |
