rust/src/libstd
Patrick Walton 7e4e99123a librustc (RFC #34): Implement the new Index and IndexMut traits.
This will break code that used the old `Index` trait. Change this code
to use the new `Index` traits. For reference, here are their signatures:

    pub trait Index<Index,Result> {
        fn index<'a>(&'a self, index: &Index) -> &'a Result;
    }
    pub trait IndexMut<Index,Result> {
        fn index_mut<'a>(&'a mut self, index: &Index) -> &'a mut Result;
    }

Closes #6515.

[breaking-change]
2014-07-07 11:43:23 -07:00
..
collections librustc: Remove the &LIFETIME EXPR production from the language. 2014-07-04 00:56:57 -07:00
io make any_pat! and u64_from_be_bytes_bench_impl! macros hygienic 2014-07-04 13:20:14 -07:00
num libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
path rustc: Remove &str indexing from the language. 2014-07-01 19:12:29 -07:00
rand libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
rt auto merge of #15404 : vhbit/rust/ios-ptr-fixes, r=pcwalton 2014-07-04 17:16:29 +00:00
sync libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
ascii.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
bitflags.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
c_vec.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
dynamic_lib.rs Add utf16_units 2014-06-30 18:50:32 +02:00
failure.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
fmt.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
from_str.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
gc.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
hash.rs std: move the hash docstring over to std::hash. 2014-07-01 07:29:16 -07:00
lib.rs Add #[crate_name] attributes as necessary 2014-07-05 12:45:42 -07:00
macros.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
os.rs Test fixes from the rollup 2014-07-03 12:54:52 -07:00
prelude.rs librustc (RFC #34): Implement the new Index and IndexMut traits. 2014-07-07 11:43:23 -07:00
rtdeps.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
task.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00
to_str.rs libstd: set baseline stability levels. 2014-06-30 22:49:18 -07:00