<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libcore/num/dec2flt/mod.rs, branch 1.27.2</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.27.2</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.27.2'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2017-09-05T02:16:15+00:00</updated>
<entry>
<title>Removed the incorrect documentation for from_str</title>
<updated>2017-09-05T02:16:15+00:00</updated>
<author>
<name>Max Comstock</name>
<email>maxibillion6@gmail.com</email>
</author>
<published>2017-09-05T02:16:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7d94ca618c1627e1751dd7744e781d864c5887bb'/>
<id>urn:sha1:7d94ca618c1627e1751dd7744e781d864c5887bb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use associated constants in core::num::dec2flt</title>
<updated>2017-04-14T15:31:33+00:00</updated>
<author>
<name>Robin Kruppe</name>
<email>robin.kruppe@gmail.com</email>
</author>
<published>2017-04-14T15:14:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e9c74bc42db1f811820bd829f99c023d3d007628'/>
<id>urn:sha1:e9c74bc42db1f811820bd829f99c023d3d007628</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add missing Eq implementations</title>
<updated>2016-09-18T12:26:49+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2016-09-12T19:37:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b4c739dbdd028277c17c90ebf613c520433622d1'/>
<id>urn:sha1:b4c739dbdd028277c17c90ebf613c520433622d1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use `#[prelude_import]` in `libcore`.</title>
<updated>2016-08-24T22:12:23+00:00</updated>
<author>
<name>Jeffrey Seyfried</name>
<email>jeffrey.seyfried@gmail.com</email>
</author>
<published>2016-08-22T10:02:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e2ad3be1787cdd36d52fcd2355225156f5460dc4'/>
<id>urn:sha1:e2ad3be1787cdd36d52fcd2355225156f5460dc4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: Stabilize APIs for the 1.11.0 release</title>
<updated>2016-07-03T17:49:01+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2016-06-28T15:56:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3016626c3aa4bc44807e54a8ba8b9e367ff566f5'/>
<id>urn:sha1:3016626c3aa4bc44807e54a8ba8b9e367ff566f5</id>
<content type='text'>
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&lt;Range&lt;T&gt;&gt; for RangeInclusive&lt;T&gt;` - everything about `RangeInclusive` is
  unstable

Closes #27739
Closes #27752
Closes #32526
Closes #33444
Closes #34152
cc #34529 (new tracking issue)
</content>
</entry>
<entry>
<title>Fix a couple of dead links on core::num::ParseFloatError docs</title>
<updated>2016-04-01T22:46:58+00:00</updated>
<author>
<name>Oliver Middleton</name>
<email>olliemail27@gmail.com</email>
</author>
<published>2016-04-01T22:46:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=564ec1ae40329d0ab0e09b3902c0f2ba27744544'/>
<id>urn:sha1:564ec1ae40329d0ab0e09b3902c0f2ba27744544</id>
<content type='text'>
</content>
</entry>
<entry>
<title>try! -&gt; ?</title>
<updated>2016-03-23T03:01:37+00:00</updated>
<author>
<name>Jorge Aparicio</name>
<email>japaricious@gmail.com</email>
</author>
<published>2016-03-23T03:01:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0f02309e4b0ea05ee905205278fb6d131341c41f'/>
<id>urn:sha1:0f02309e4b0ea05ee905205278fb6d131341c41f</id>
<content type='text'>
Automated conversion using the untry tool [1] and the following command:

```
$ find -name '*.rs' -type f | xargs untry
```

at the root of the Rust repo.

[1]: https://github.com/japaric/untry
</content>
</entry>
<entry>
<title>Some docs for std::num</title>
<updated>2016-02-09T19:07:51+00:00</updated>
<author>
<name>Steve Klabnik</name>
<email>steve@steveklabnik.com</email>
</author>
<published>2016-02-09T19:06:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=dd0133d8362f0e1fca6f4346c620dd13c7e18dbc'/>
<id>urn:sha1:dd0133d8362f0e1fca6f4346c620dd13c7e18dbc</id>
<content type='text'>
This commit does two things:

* Re-works the module-level documentation.
* Cleaning up wording and adding links to where error types are used.

Part of #29364
</content>
</entry>
<entry>
<title>Prevent the immediate panic uncovered by #31109 and add a test.</title>
<updated>2016-02-04T15:28:06+00:00</updated>
<author>
<name>Robin Kruppe</name>
<email>robin.kruppe@gmail.com</email>
</author>
<published>2016-01-26T21:10:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=af5d574d1f56ec07bb5495ca212323b11739f111'/>
<id>urn:sha1:af5d574d1f56ec07bb5495ca212323b11739f111</id>
<content type='text'>
The code there still triggers an ICE, but for different reasons (const eval unwraps the parse result).
</content>
</entry>
<entry>
<title>Don't import ParseResult's variants in dec2flt.</title>
<updated>2015-12-17T12:48:44+00:00</updated>
<author>
<name>Ms2ger</name>
<email>Ms2ger@gmail.com</email>
</author>
<published>2015-12-17T12:48:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1e44ece42b26737dec9dd0b55303fc9f5103ddc8'/>
<id>urn:sha1:1e44ece42b26737dec9dd0b55303fc9f5103ddc8</id>
<content type='text'>
</content>
</entry>
</feed>
