| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -4/+4 | |
| 2015-02-02 | `for x in xs.iter_mut()` -> `for x in &mut xs` | Jorge Aparicio | -2/+2 | |
| Also `for x in option.iter_mut()` -> `if let Some(ref mut x) = option` | ||||
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -8/+8 | |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -2/+2 | |
| 2015-01-26 | std: Rename Writer::write to Writer::write_all | Alex Crichton | -8/+8 | |
| In preparation for upcoming changes to the `Writer` trait (soon to be called `Write`) this commit renames the current `write` method to `write_all` to match the semantics of the upcoming `write_all` method. The `write` method will be repurposed to return a `usize` indicating how much data was written which differs from the current `write` semantics. In order to head off as much unintended breakage as possible, the method is being deprecated now in favor of a new name. [breaking-change] | ||||
| 2015-01-26 | Fallout of io => old_io | Alex Crichton | -1/+1 | |
| 2015-01-26 | std: Rename io to old_io | Alex Crichton | -0/+444 | |
| In preparation for the I/O rejuvination of the standard library, this commit renames the current `io` module to `old_io` in order to make room for the new I/O modules. It is expected that the I/O RFCs will land incrementally over time instead of all at once, and this provides a fresh clean path for new modules to enter into as well as guaranteeing that all old infrastructure will remain in place for some time. As each `old_io` module is replaced it will be deprecated in-place for new structures in `std::{io, fs, net}` (as appropriate). This commit does *not* leave a reexport of `old_io as io` as the deprecation lint does not currently warn on this form of use. This is quite a large breaking change for all imports in existing code, but all functionality is retained precisely as-is and path statements simply need to be renamed from `io` to `old_io`. [breaking-change] | ||||
