rust/src/libnative/io
Niko Matsakis 9e3d0b002a librustc: Remove the fallback to int from typechecking.
This breaks a fair amount of code. The typical patterns are:

* `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`;

* `println!("{}", 3)`: change to `println!("{}", 3i)`;

* `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`.

RFC #30. Closes #6023.

[breaking-change]
2014-06-24 17:18:48 -07:00
..
addrinfo.rs libs: Fix miscellaneous fallout of librustrt 2014-06-06 23:00:01 -07:00
c_unix.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
c_win32.rs Rolling up PRs in the queue 2014-06-13 13:53:55 -07:00
file_unix.rs Deprecate the bytes!() macro. 2014-06-18 17:02:22 -07:00
file_win32.rs Deprecate the bytes!() macro. 2014-06-18 17:02:22 -07:00
helper_thread.rs std: Improve pipe() functionality 2014-06-16 10:53:49 -07:00
mod.rs auto merge of #14900 : alexcrichton/rust/snapshots, r=huonw 2014-06-16 08:16:49 +00:00
net.rs Shorten endian conversion method names 2014-06-18 17:01:34 -07:00
pipe_unix.rs Register new snapshots 2014-06-15 23:30:24 -07:00
pipe_win32.rs Register new snapshots 2014-06-15 23:30:24 -07:00
process.rs std: Improve pipe() functionality 2014-06-16 10:53:49 -07:00
timer_unix.rs auto merge of #14900 : alexcrichton/rust/snapshots, r=huonw 2014-06-16 08:16:49 +00:00
timer_win32.rs Register new snapshots 2014-06-15 23:30:24 -07:00
util.rs native: Deal with the rtio changes 2014-06-06 22:19:57 -07:00