rust/src/libstd
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
..
collections librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
io librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
num librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
path Deprecate the bytes!() macro. 2014-06-18 17:02:22 -07:00
rand librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
rt librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
sync librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
ascii.rs rustc: Remove ~[T] from the language 2014-06-11 15:02:17 -07:00
bitflags.rs std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
c_vec.rs core: Rename container mod to collections. Closes #12543 2014-06-08 21:29:57 -07:00
dynamic_lib.rs auto merge of #14715 : vhbit/rust/ios-pr2, r=alexcrichton 2014-06-16 06:32:03 +00:00
failure.rs Register new snapshots 2014-06-15 23:30:24 -07:00
fmt.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
from_str.rs std: Recreate a collections module 2014-06-05 13:55:10 -07:00
gc.rs Register new snapshots 2014-06-14 10:28:09 -07:00
lib.rs librustc: Feature gate lang items and intrinsics. 2014-06-23 23:28:28 -07:00
macros.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
os.rs auto merge of #14963 : w3ln4/rust/master, r=alexcrichton 2014-06-24 13:46:54 +00:00
prelude.rs rustc: Obsolete the @ syntax entirely 2014-06-14 10:45:37 -07:00
rtdeps.rs Basic iOS support 2014-06-12 21:15:14 +03:00
task.rs std: Update std::task docs to reflect modern times 2014-06-19 17:18:21 -07:00
to_str.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00