rust/src/tools/rustbook
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
..
static rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
book.rs rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
build.rs fix alignment 2016-03-22 22:03:54 -05:00
Cargo.lock rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
Cargo.toml rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
error.rs rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
help.rs rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
main.rs std: Stabilize APIs for the 1.11.0 release 2016-07-03 10:49:01 -07:00
serve.rs rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
subcommand.rs rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
term.rs rustbuild: Move rustbook to a src/tools directory 2016-03-08 11:52:09 -08:00
test.rs try! -> ? 2016-03-22 22:01:37 -05:00