rust/src/librustc/middle
bors 2e92c67dc0 auto merge of #16664 : aturon/rust/stabilize-option-result, r=alexcrichton
Per API meeting

  https://github.com/rust-lang/meeting-minutes/blob/master/Meeting-API-review-2014-08-13.md

# Changes to `core::option`

Most of the module is marked as stable or unstable; most of the unstable items are awaiting resolution of conventions issues.

However, a few methods have been deprecated, either due to lack of use or redundancy:

* `take_unwrap`, `get_ref` and `get_mut_ref` (redundant, and we prefer for this functionality to go through an explicit .unwrap)
* `filtered` and `while`
* `mutate` and `mutate_or_set`
* `collect`: this functionality is being moved to a new `FromIterator` impl.

# Changes to `core::result`

Most of the module is marked as stable or unstable; most of the unstable items are awaiting resolution of conventions issues.

* `collect`: this functionality is being moved to a new `FromIterator` impl.
* `fold_` is deprecated due to lack of use
* Several methods found in `core::option` are added here, including `iter`, `as_slice`, and variants.

Due to deprecations, this is a:

[breaking-change]
2014-08-28 23:56:20 +00:00
..
borrowck DST coercions and DST structs 2014-08-26 12:38:51 +12:00
cfg Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
save Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
trans auto merge of #16664 : aturon/rust/stabilize-option-result, r=alexcrichton 2014-08-28 23:56:20 +00:00
typeck Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
astencode.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
check_const.rs Rebasing changes 2014-08-26 16:07:32 +12:00
check_loop.rs librustc: Tie up loose ends in unboxed closures. 2014-08-14 08:53:25 -07:00
check_match.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
check_static.rs DST coercions and DST structs 2014-08-26 12:38:51 +12:00
const_eval.rs DST coercions and DST structs 2014-08-26 12:38:51 +12:00
dataflow.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
dead.rs librustc: handle repr on structs, require it for ffi, unify with packed 2014-08-20 21:02:23 -04:00
def.rs
dependency_format.rs
effect.rs Adjust the error messages to match the pattern "expected foo, found bar" 2014-08-24 09:53:01 +02:00
entry.rs
expr_use_visitor.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
freevars.rs librustc: Tie up loose ends in unboxed closures. 2014-08-14 08:53:25 -07:00
graph.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
intrinsicck.rs auto merge of #16751 : luqmana/rust/tr, r=alexcrichton 2014-08-27 09:31:14 +00:00
kind.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
lang_items.rs
liveness.rs DST coercions and DST structs 2014-08-26 12:38:51 +12:00
mem_categorization.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
pat_util.rs
privacy.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
reachable.rs librustc: Stop assuming that implementations and traits only contain 2014-08-14 11:40:22 -07:00
region.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
resolve_lifetime.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
resolve.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
stability.rs librustc: Stop assuming that implementations and traits only contain 2014-08-14 11:40:22 -07:00
subst.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
ty_fold.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
ty.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
weak_lang_items.rs