| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-10-24 | Remove std::io once and for all! | Alex Crichton | -1817/+0 | |
| 2013-10-24 | Remove even more of std::io | Alex Crichton | -374/+10 | |
| Big fish fried here: extra::json most of the compiler extra::io_util removed extra::fileinput removed Fish left to fry extra::ebml | ||||
| 2013-10-23 | Removed unnecessary comments and white spaces as suggested | reedlepee | -3/+3 | |
| 2013-10-23 | Removed Unnecessary comments and white spaces #4386 | reedlepee | -6/+0 | |
| 2013-10-23 | Making fields in std and extra : private #4386 | reedlepee | -6/+12 | |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -17/+17 | |
| Who doesn't like a massive renaming? | ||||
| 2013-10-15 | path2: Remove .with_display_str and friends | Kevin Ballard | -2/+3 | |
| Rewrite these methods as methods on Display and FilenameDisplay. This turns do path.with_display_str |s| { ... } into do path.display().with_str |s| { ... } | ||||
| 2013-10-15 | path2: Adjust the API to remove all the _str mutation methods | Kevin Ballard | -12/+12 | |
| Add a new trait BytesContainer that is implemented for both byte vectors and strings. Convert Path::from_vec and ::from_str to one function, Path::new(). Remove all the _str-suffixed mutation methods (push, join, with_*, set_*) and modify the non-suffixed versions to use BytesContainer. | ||||
| 2013-10-15 | path2: Replace the path module outright | Kevin Ballard | -17/+18 | |
| Remove the old path. Rename path2 to path. Update all clients for the new path. Also make some miscellaneous changes to the Path APIs to help the adoption process. | ||||
| 2013-10-14 | Removing ccdecl | Steve Klabnik | -1/+1 | |
| as per https://github.com/mozilla/rust/pull/9606#discussion_r6930872 | ||||
| 2013-10-14 | Remove unused abi attributes. | Steve Klabnik | -2/+1 | |
| They've been replaced by putting the name on the extern block. #[abi = "foo"] goes to extern "foo" { } Closes #9483. | ||||
| 2013-10-10 | Remove usage of io::FILE_writer | Alex Crichton | -37/+0 | |
| 2013-10-01 | Migrate users of 'loop' to 'continue' | Alex Crichton | -1/+1 | |
| Closes #9467 | ||||
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -22/+19 | |
| 2013-09-25 | rustdoc: Change all code-blocks with a script | Alex Crichton | -10/+10 | |
| find src -name '*.rs' | xargs sed -i '' 's/~~~.*{\.rust}/```rust/g' find src -name '*.rs' | xargs sed -i '' 's/ ~~~$/ ```/g' find src -name '*.rs' | xargs sed -i '' 's/^~~~$/ ```/g' | ||||
| 2013-09-23 | librustc: Remove `@fn` managed closures from the language. | Patrick Walton | -8/+24 | |
| 2013-09-16 | switch Drop to `&mut self` | Daniel Micay | -3/+3 | |
| 2013-09-12 | std: Rename {Option,Result}::chain{,_err}* to {and_then,or_else} | Erick Tryzelaar | -3/+3 | |
| 2013-09-09 | auto merge of #9062 : blake2-ppc/rust/vec-iterator, r=alexcrichton | bors | -1/+1 | |
| Visit the free functions of std::vec and reimplement or remove some. Most prominently, remove `each_permutation` and replace with two iterators, ElementSwaps and Permutations. Replace unzip, unzip_slice with an updated `unzip` that works with an iterator argument. Replace each_permutation with a Permutation iterator. The new permutation iterator is more efficient since it uses an algorithm that produces permutations in an order where each is only one element swap apart, including swapping back to the original state with one swap at the end. Unify the seldomly used functions `build`, `build_sized`, `build_sized_opt` into just one function `build`. Remove `equal_sizes` | ||||
| 2013-09-10 | std::at_vec and vec: Unify build_sized, build_sized_opt into build | blake2-ppc | -1/+1 | |
| These functions have very few users since they are mostly replaced by iterator-based constructions. Convert a few remaining users in-tree, and reduce the number of functions by basically renaming build_sized_opt to build, and removing the other two. This for both the vec and the at_vec versions. | ||||
| 2013-09-09 | rename `std::iterator` to `std::iter` | Daniel Micay | -1/+1 | |
| The trait will keep the `Iterator` naming, but a more concise module name makes using the free functions less verbose. The module will define iterables in addition to iterators, as it deals with iteration in general. | ||||
| 2013-09-05 | Rename str::from_bytes to str::from_utf8, closes #8985 | Florian Hahn | -5/+5 | |
| 2013-09-04 | stop treating char as an integer type | Daniel Micay | -7/+15 | |
| Closes #7609 | ||||
| 2013-08-30 | Add missing space | Bouke van der Bijl | -1/+1 | |
| 2013-08-26 | std: Bind write() on Win64 | klutzy | -5/+15 | |
| 2013-08-22 | Enabled unit tests in std and extra. | Vadim Chugunov | -1/+0 | |
| 2013-08-19 | Add externfn macro and correctly label fixed_stack_segments | Niko Matsakis | -6/+49 | |
| 2013-08-18 | auto merge of #8551 : huonw/rust/speling, r=alexcrichton | bors | -5/+5 | |
| (This doesn't add/remove `u`s or change `ize` to `ise`, or anything like that.) | ||||
| 2013-08-18 | More spelling corrections. | Huon Wilson | -1/+1 | |
| 2013-08-16 | doc: convert remaining uses of core:: to std::. | Huon Wilson | -4/+4 | |
| 2013-08-15 | Add ToCStr method .with_c_str() | Kevin Ballard | -5/+5 | |
| .with_c_str() is a replacement for the old .as_c_str(), to avoid unnecessary boilerplate. Replace all usages of .to_c_str().with_ref() with .with_c_str(). | ||||
| 2013-08-12 | fix build with the new snapshot compiler | Daniel Micay | -14/+0 | |
| 2013-08-06 | Merge remote-tracking branch 'remotes/origin/master' into ↵ | Erick Tryzelaar | -1/+1 | |
| remove-str-trailing-nulls | ||||
| 2013-08-04 | Open files in binary mode. Closes #3948 | darkf | -1/+1 | |
| 2013-08-04 | Merge remote-tracking branch 'remotes/origin/master' into str-remove-null | Erick Tryzelaar | -8/+8 | |
| 2013-08-04 | Remove trailing null from strings | Erick Tryzelaar | -0/+6 | |
| 2013-08-04 | std: replace str::as_c_str with std::c_str | Erick Tryzelaar | -7/+7 | |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -8/+8 | |
| this has been replaced by `for` | ||||
| 2013-08-02 | librustc: Disallow "unsafe" for external functions | Patrick Walton | -3/+3 | |
| 2013-08-01 | std: Replace `for` with `do { .. }` expr where internal iterators are used | blake2-ppc | -8/+9 | |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -10/+11 | |
| 2013-07-30 | implement pointer arithmetic with GEP | Daniel Micay | -1/+1 | |
| Closes #8118, #7136 ~~~rust extern mod extra; use std::vec; use std::ptr; fn bench_from_elem(b: &mut extra::test::BenchHarness) { do b.iter { let v: ~[u8] = vec::from_elem(1024, 0u8); } } fn bench_set_memory(b: &mut extra::test::BenchHarness) { do b.iter { let mut v: ~[u8] = vec::with_capacity(1024); unsafe { let vp = vec::raw::to_mut_ptr(v); ptr::set_memory(vp, 0, 1024); vec::raw::set_len(&mut v, 1024); } } } fn bench_vec_repeat(b: &mut extra::test::BenchHarness) { do b.iter { let v: ~[u8] = ~[0u8, ..1024]; } } ~~~ Before: test bench_from_elem ... bench: 415 ns/iter (+/- 17) test bench_set_memory ... bench: 85 ns/iter (+/- 4) test bench_vec_repeat ... bench: 83 ns/iter (+/- 3) After: test bench_from_elem ... bench: 84 ns/iter (+/- 2) test bench_set_memory ... bench: 84 ns/iter (+/- 5) test bench_vec_repeat ... bench: 84 ns/iter (+/- 3) | ||||
| 2013-07-28 | ReaderUtil::each_byte shouldn't include EOF byte -- Issue #5056 | Stepan Koltsov | -4/+38 | |
| 2013-07-27 | std and rustc: cleanup uses of result methods | Erick Tryzelaar | -27/+25 | |
| 2013-07-27 | cleanup .chain and .chain_err + fixing other files | maikklein | -6/+6 | |
| 2013-07-27 | cleanup .unwrap and .unwrap_err fixing io tests | Erick Tryzelaar | -4/+2 | |
| 2013-07-23 | std: remove str::to_owned and str::raw::slice_bytes_owned | Erick Tryzelaar | -1/+1 | |
| 2013-07-23 | std: move StrUtil::as_c_str into StrSlice | Erick Tryzelaar | -1/+1 | |
| 2013-07-23 | std: remove os::as_c_charp | Erick Tryzelaar | -14/+13 | |
| 2013-07-20 | librustc: Remove `pub extern` and `priv extern` from the language. | Patrick Walton | -4/+4 | |
| Place `pub` or `priv` on individual items instead. | ||||
