rust/src/test
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
..
auxiliary Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
bench auto merge of #16664 : aturon/rust/stabilize-option-result, r=alexcrichton 2014-08-28 23:56:20 +00:00
codegen Add pub to all the codegen tests 2013-10-10 06:00:51 -07:00
compile-fail Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
compile-fail-fulldeps regex: Enable test on Windows 2014-08-18 13:44:29 +09:00
debuginfo librustc: handle repr on structs, require it for ffi, unify with packed 2014-08-20 21:02:23 -04:00
pretty Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
run-fail librustc: Forbid external crates, imports, and/or items from being 2014-08-16 19:32:25 -07:00
run-make Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
run-pass Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
run-pass-fulldeps extern crate foobar as foo; 2014-08-23 12:16:04 -07:00