| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-07-17 | librustc: Remove the `Copy` bound from the language. | Patrick Walton | -3/+0 | |
| 2013-07-17 | test: Fix tests. | Patrick Walton | -20/+20 | |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -12/+11 | |
| 2013-07-08 | Replaces the free-standing functions in f32, &c. | Jens Nockert | -2/+3 | |
| The free-standing functions in f32, f64, i8, i16, i32, i64, u8, u16, u32, u64, float, int, and uint are replaced with generic functions in num instead. If you were previously using any of those functions, just replace them with the corresponding function with the same name in num. Note: If you were using a function that corresponds to an operator, use the operator instead. | ||||
| 2013-07-04 | Convert vec::{as_imm_buf, as_mut_buf} to methods. | Huon Wilson | -3/+3 | |
| 2013-06-30 | Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this | Huon Wilson | -1/+3 | |
| is very common, and the replacement (.iter().transform().collect()) is very ugly. | ||||
| 2013-06-29 | Removing a lot of usage of '&const' | Alex Crichton | -3/+3 | |
| 2013-06-28 | librustc: Disallow "mut" from distributing over bindings. | Patrick Walton | -2/+5 | |
| This is the backwards-incompatible part of per-binding-site "mut". | ||||
| 2013-06-28 | Convert vec::{reserve, reserve_at_least, capacity} to methods. | Huon Wilson | -1/+1 | |
| 2013-06-27 | Convert vec::[mut_]slice to methods, remove vec::const_slice. | Huon Wilson | -6/+5 | |
| 2013-06-26 | Work-around 'static bound requirement in io::with_bytes_reader (note: does ↵ | Ben Blum | -3/+10 | |
| not fix #5723, interface still unsafe) | ||||
| 2013-06-25 | Change finalize -> drop. | Luqman Aden | -3/+3 | |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -9/+9 | |
| I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway. | ||||
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -2/+2 | |
| 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-21 | Remove all #[cfg(stage0)]-protected code | James Miller | -3/+1 | |
| New snapshot means this can all go. Also removes places that have comments that say they are workarounds for stage0 errors. | ||||
| 2013-06-16 | Add copies to type params with Copy bound | Niko Matsakis | -1/+1 | |
| 2013-06-15 | rm vec::uniq_len | Daniel Micay | -1/+1 | |
| 2013-06-13 | Revert "std: convert {vec,str}::to_owned to methods." | Brian Anderson | -1/+1 | |
| This fixes the strange random crashes in compile-fail tests. This reverts commit 96cd61ad034cc9e88ab6a7845c3480dbc1ea62f3. Conflicts: src/librustc/driver/driver.rs src/libstd/str.rs src/libsyntax/ext/quote.rs | ||||
| 2013-06-12 | std: unify the str -> [u8] functions as 3 methods: .as_bytes() and ↵ | Huon Wilson | -2/+2 | |
| .as_bytes_with_null[_consume](). The first acts on &str and is not nul-terminated, the last two act on strings that are always null terminated (&'static str, ~str and @str). | ||||
| 2013-06-12 | std: convert {vec,str}::to_owned to methods. | Huon Wilson | -1/+1 | |
| 2013-06-11 | fix tests, remove some warnings | Huon Wilson | -1/+0 | |
| 2013-06-11 | std: replace str::{starts,ends}_with with the method. | Huon Wilson | -2/+2 | |
| 2013-06-10 | std: convert str::char_at* to methods. | Huon Wilson | -1/+1 | |
| 2013-06-10 | std: remove str::{len, slice, is_empty} in favour of methods. | Huon Wilson | -1/+1 | |
| 2013-06-04 | librustc: Disallow multiple patterns from appearing in a "let" declaration. | Patrick Walton | -3/+5 | |
| You can still initialize multiple variables at once with "let (x, y) = (1, 2)". | ||||
| 2013-06-04 | std::io: Modernize some constructors | Philipp Brüschweiler | -33/+35 | |
| Part of #3853 | ||||
| 2013-05-30 | Remove copy bindings from patterns. | Niko Matsakis | -3/+3 | |
| 2013-05-30 | Require documentation by default for libstd | Alex Crichton | -0/+2 | |
| Adds documentation for various things that I understand. Adds #[allow(missing_doc)] for lots of things that I don't understand. | ||||
| 2013-05-28 | auto merge of #6771 : thestinger/rust/highlight, r=luqmana | bors | -10/+15 | |
| This works with pandoc linked against highlighting-kate >= 0.5.3.8. It seems to just be a no-op with earlier versions, because I successfully ran this through `try`. This also fixes some consistency issues (like making `Example`/`Examples` always a header and always using three tildes). | ||||
| 2013-05-27 | syntax highlight code examples in docstrings | Daniel Micay | -10/+15 | |
| 2013-05-28 | Remove unnecessary allocations flagged by lint | Seo Sanghyeon | -3/+3 | |
| 2013-05-23 | cleanup warnings from libstd | Erick Tryzelaar | -14/+14 | |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -0/+2105 | |
| This only changes the directory names; it does not change the "real" metadata names. | ||||
| 2012-03-12 | Libc/os/run/rand/io reorganization. Close #1373. Close #1638. | Graydon Hoare | -750/+0 | |
| - 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 | Use loop instead of while(true) in libraries and compiler itself | Tim Chevalier | -2/+2 | |
| And remove spurious fails/unreachable() calls. | ||||
| 2012-03-02 | comp/std: rename io::string_reader to io::str_reader. | Erick Tryzelaar | -5/+5 | |
| 2012-03-02 | std: add a io::with_str_reader fn to remove a str copy | Erick Tryzelaar | -7/+24 | |
| 2012-02-28 | core/std: whitespace fixes. | Erick Tryzelaar | -2/+3 | |
| 2012-02-28 | std: Add helpers to simplify making str io::writers | Erick Tryzelaar | -0/+13 | |
| 2012-02-24 | Encode/decode AST into metadata, re-instantiate inlined items | Niko Matsakis | -8/+52 | |
| 2012-02-09 | Remove some pointless imports | Marijn Haverbeke | -2/+2 | |
| 2012-02-09 | Increase precedence of as operator | Marijn Haverbeke | -5/+5 | |
| Closes #1717 | ||||
| 2012-02-01 | Remove native types from stdlib | Marijn Haverbeke | -10/+10 | |
| 2012-01-31 | Change option::t to option | Tim Chevalier | -4/+4 | |
| Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming). | ||||
| 2012-01-25 | (TEMPORARY) Break something by making io::mem_buffer_str UTF-8 safe | Kevin Cantu | -1/+1 | |
| 2012-01-25 | Replacing str::unsafe_from_bytes with str::from_bytes (part 6) | Kevin Cantu | -1/+4 | |
| 2012-01-25 | Replacing str::unsafe_from_bytes with str::from_bytes (part 5) | Kevin Cantu | -3/+3 | |
| 2012-01-23 | s/block()/fn()/g | Niko Matsakis | -3/+3 | |
| 2012-01-19 | lib: ";" to "," in enums | Patrick Walton | -5/+5 | |
| 2012-01-19 | stdlib: "tag" -> "enum" | Patrick Walton | -3/+3 | |
