rust/src/libcollectionstest
Alex Crichton 3016626c3a std: Stabilize APIs for the 1.11.0 release
Although the set of APIs being stabilized this release is relatively small, the
trains keep going! Listed below are the APIs in the standard library which have
either transitioned from unstable to stable or those from unstable to
deprecated.

Stable

* `BTreeMap::{append, split_off}`
* `BTreeSet::{append, split_off}`
* `Cell::get_mut`
* `RefCell::get_mut`
* `BinaryHeap::append`
* `{f32, f64}::{to_degrees, to_radians}` - libcore stabilizations mirroring past
  libstd stabilizations
* `Iterator::sum`
* `Iterator::product`

Deprecated

* `{f32, f64}::next_after`
* `{f32, f64}::integer_decode`
* `{f32, f64}::ldexp`
* `{f32, f64}::frexp`
* `num::One`
* `num::Zero`

Added APIs (all unstable)

* `iter::Sum`
* `iter::Product`
* `iter::Step` - a few methods were added to accomodate deprecation of One/Zero

Removed APIs

* `From<Range<T>> for RangeInclusive<T>` - everything about `RangeInclusive` is
  unstable

Closes #27739
Closes #27752
Closes #32526
Closes #33444
Closes #34152
cc #34529 (new tracking issue)
2016-07-03 10:49:01 -07:00
..
btree Implement split_off for BTreeMap and BTreeSet (RFC 509) 2016-06-01 10:02:25 +03:00
bench.rs More test fixes 2015-04-14 10:14:19 -07:00
binary_heap.rs implemented peek_mut and unit tests 2016-06-21 12:10:38 -07:00
enum_set.rs format with [rustfmt_skip] and addressed a few comments 2016-05-24 07:39:55 +05:30
fmt.rs std: Clean out #[deprecated] APIs 2015-03-31 15:49:57 -07:00
lib.rs std: Stabilize APIs for the 1.11.0 release 2016-07-03 10:49:01 -07:00
linked_list.rs run rustfmt on libcollections test module 2016-05-22 23:57:13 +05:30
slice.rs format with [rustfmt_skip] and addressed a few comments 2016-05-24 07:39:55 +05:30
str.rs clean up for test cases 2016-06-09 08:20:08 +05:30
string.rs run rustfmt on libcollections test module 2016-05-22 23:57:13 +05:30
vec_deque.rs run rustfmt on libcollections test module 2016-05-22 23:57:13 +05:30
vec.rs run rustfmt on libcollections test module 2016-05-22 23:57:13 +05:30