rust/src/librustrt
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
..
args.rs Remove stage0 attributes. 2014-08-23 02:11:07 -07:00
at_exit_imp.rs stabilize atomics (now atomic) 2014-08-04 16:03:21 -07:00
bookkeeping.rs stabilize atomics (now atomic) 2014-08-04 16:03:21 -07:00
c_str.rs librustc: Forbid external crates, imports, and/or items from being 2014-08-16 19:32:25 -07:00
exclusive.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
lib.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
libunwind.rs Remove stage0 attributes. 2014-08-23 02:11:07 -07:00
local_data.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
local_heap.rs
local_ptr.rs libsyntax: Remove the use foo = bar syntax from the language in favor 2014-08-18 09:19:10 -07:00
local.rs rustrt: Allow dropping a brand-new Task 2014-07-30 07:06:44 -07:00
macros.rs
mutex.rs stabilize atomics (now atomic) 2014-08-04 16:03:21 -07:00
rtio.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
stack.rs Remove stage0 attributes. 2014-08-23 02:11:07 -07:00
task.rs auto merge of #16664 : aturon/rust/stabilize-option-result, r=alexcrichton 2014-08-28 23:56:20 +00:00
thread_local_storage.rs Port Rust to DragonFlyBSD 2014-07-29 16:44:39 +02:00
thread.rs Fallout from stabilizing core::option 2014-08-28 09:12:54 -07:00
unwind.rs Remove stage0 attributes. 2014-08-23 02:11:07 -07:00
util.rs