rust/src/librustc/middle/infer
Alex Crichton 9492275106 rollup merge of #22188: alexcrichton/envv2
This commit tweaks the interface of the `std::env` module to make it more
ergonomic for common usage:

* `env::var` was renamed to `env::var_os`
* `env::var_string` was renamed to `env::var`
* `env::args` was renamed to `env::args_os`
* `env::args` was re-added as a panicking iterator over string values
* `env::vars` was renamed to `env::vars_os`
* `env::vars` was re-added as a panicking iterator over string values.

This should make common usage (e.g. unicode values everywhere) more ergonomic
as well as "the default". This is also a breaking change due to the differences
of what's yielded from each of these functions, but migration should be fairly
easy as the defaults operate over `String` which is a common type to use.

[breaking-change]
2015-02-11 14:02:24 -08:00
..
higher_ranked cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
region_inference rollup merge of #22188: alexcrichton/envv2 2015-02-11 14:02:24 -08:00
combine.rs cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
doc.rs
equate.rs Remove every mention of "onceness". 2015-01-26 04:15:09 +02:00
error_reporting.rs destructor checker (dropck). 2015-02-11 08:50:27 +01:00
freshen.rs cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
glb.rs Remove every mention of "onceness". 2015-01-26 04:15:09 +02:00
lattice.rs
lub.rs Remove every mention of "onceness". 2015-01-26 04:15:09 +02:00
mod.rs destructor checker (dropck). 2015-02-11 08:50:27 +01:00
resolve.rs
sub.rs Remove every mention of "onceness". 2015-01-26 04:15:09 +02:00
type_variable.rs for x in xs.iter() -> for x in &xs 2015-02-02 13:40:18 -05:00
unify.rs s/Show/Debug/g 2015-01-29 07:49:02 -05:00