| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-12-21 | Remove unnecessary semicolon | Jan Niklas Hasse | -1/+1 | |
| 2013-12-20 | Support ANSI colors in msys terminals. See #2807 | Jan Niklas Hasse | -0/+15 | |
| 2013-12-04 | std::str: remove from_utf8. | Huon Wilson | -1/+3 | |
| This function had type &[u8] -> ~str, i.e. it allocates a string internally, even though the non-allocating version that take &[u8] -> &str and ~[u8] -> ~str are all that is necessary in most circumstances. | ||||
| 2013-11-26 | Removed unneccessary `_iter` suffixes from various APIs | Marvin Löbel | -1/+1 | |
| 2013-11-11 | Move std::rt::io to std::io | Alex Crichton | -1/+1 | |
| 2013-11-04 | Move io::file to io::fs and fns out of File | Alex Crichton | -1/+1 | |
| This renames the `file` module to `fs` because that more accurately describes its current purpose (manipulating the filesystem, not just files). Additionally, this adds an UnstableFileStat structure as a nested structure of FileStat to signify that the fields should not be depended on. The structure is currently flagged with #[unstable], but it's unlikely that it has much meaning. Closes #10241 | ||||
| 2013-10-28 | Remove the extension traits for Readers/Writers | Alex Crichton | -10/+9 | |
| These methods are all excellent candidates for default methods, so there's no need to require extra imports of various traits. | ||||
| 2013-10-24 | Remove std::io once and for all! | Alex Crichton | -11/+13 | |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -17/+17 | |
| Who doesn't like a massive renaming? | ||||
| 2013-10-01 | Migrate users of 'loop' to 'continue' | Alex Crichton | -2/+2 | |
| Closes #9467 | ||||
| 2013-09-30 | extra: Remove usage of fmt! | Alex Crichton | -18/+19 | |
| 2013-09-05 | Rename str::from_bytes to str::from_utf8, closes #8985 | Florian Hahn | -1/+1 | |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -1/+1 | |
| cc #5898 | ||||
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -4/+4 | |
| this has been replaced by `for` | ||||
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -4/+4 | |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -1/+1 | |
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -1/+1 | |
| 2013-07-01 | rustc: add a lint to enforce uppercase statics. | Huon Wilson | -0/+2 | |
| 2013-06-30 | Remove vec::[r]position_between, replaced by slices & iterators. | Huon Wilson | -4/+5 | |
| 2013-06-29 | Great renaming: propagate throughout the rest of the codebase | Corey Richardson | -4/+3 | |
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -1/+1 | |
| The removed test for issue #2611 is well covered by the `std::iterator` module itself. This adds the `count` method to `IteratorUtil` to replace `EqIter`. | ||||
| 2013-06-16 | remove unused imports | Huon Wilson | -1/+0 | |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -1/+0 | |
| 2013-06-10 | std: replace str::each_split* with an iterator | Huon Wilson | -4/+2 | |
| 2013-06-04 | librustc: Disallow multiple patterns from appearing in a "let" declaration. | Patrick Walton | -1/+3 | |
| You can still initialize multiple variables at once with "let (x, y) = (1, 2)". | ||||
| 2013-06-03 | Ignore tests that cannot pass on buildbot | Corey Richardson | -0/+1 | |
| 2013-06-01 | test fixes | Corey Richardson | -1/+1 | |
| 2013-05-31 | Fix formatting for tidy | Corey Richardson | -5/+17 | |
| 2013-05-31 | extra::term: better error handling and win32 compat | Corey Richardson | -2/+1 | |
| 2013-05-31 | extra::term overhaul | Corey Richardson | -0/+320 | |
