<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/num/strconv.rs, branch try</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-04-21T18:37:43+00:00</updated>
<entry>
<title>std: Remove deprecated/unstable num functionality</title>
<updated>2015-04-21T18:37:43+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-04-17T22:32:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=eeb94886adccb3f13003f92f117115d17846ce1f'/>
<id>urn:sha1:eeb94886adccb3f13003f92f117115d17846ce1f</id>
<content type='text'>
This commit removes all the old casting/generic traits from `std::num` that are
no longer in use by the standard library. This additionally removes the old
`strconv` module which has not seen much use in quite a long time. All generic
functionality has been supplanted with traits in the `num` crate and the
`strconv` module is supplanted with the [rust-strconv crate][rust-strconv].

[rust-strconv]: https://github.com/lifthrasiir/rust-strconv

This is a breaking change due to the removal of these deprecated crates, and the
alternative crates are listed above.

[breaking-change]
</content>
</entry>
<entry>
<title>Model lexer: Fix remaining issues</title>
<updated>2015-04-21T10:02:12+00:00</updated>
<author>
<name>Piotr Czarnecki</name>
<email>pioczarn@gmail.com</email>
</author>
<published>2015-04-21T10:02:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=13bc8afa4b56e8d7b012f35a35a11087739abf15'/>
<id>urn:sha1:13bc8afa4b56e8d7b012f35a35a11087739abf15</id>
<content type='text'>
</content>
</entry>
<entry>
<title>test: Fixup many library unit tests</title>
<updated>2015-04-14T17:14:19+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-04-10T18:39:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=700e627cf727873a472b1876238aac10b932258b'/>
<id>urn:sha1:700e627cf727873a472b1876238aac10b932258b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fallout in public-facing and semi-public-facing libs</title>
<updated>2015-04-01T15:23:45+00:00</updated>
<author>
<name>Niko Matsakis</name>
<email>niko@alum.mit.edu</email>
</author>
<published>2015-03-30T13:40:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c35c46821a69af14e6b38e0238f70e22433a3e8e'/>
<id>urn:sha1:c35c46821a69af14e6b38e0238f70e22433a3e8e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Stabilize std::num</title>
<updated>2015-03-31T14:50:25+00:00</updated>
<author>
<name>Aaron Turon</name>
<email>aturon@mozilla.com</email>
</author>
<published>2015-03-20T06:42:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=232424d9952700682373ccf2d578109f401ff023'/>
<id>urn:sha1:232424d9952700682373ccf2d578109f401ff023</id>
<content type='text'>
This commit stabilizes the `std::num` module:

* The `Int` and `Float` traits are deprecated in favor of (1) the
  newly-added inherent methods and (2) the generic traits available in
  rust-lang/num.

* The `Zero` and `One` traits are reintroduced in `std::num`, which
  together with various other traits allow you to recover the most
  common forms of generic programming.

* The `FromStrRadix` trait, and associated free function, is deprecated
  in favor of inherent implementations.

* A wide range of methods and constants for both integers and floating
  point numbers are now `#[stable]`, having been adjusted for integer
  guidelines.

* `is_positive` and `is_negative` are renamed to `is_sign_positive` and
  `is_sign_negative`, in order to address #22985

* The `Wrapping` type is moved to `std::num` and stabilized;
  `WrappingOps` is deprecated in favor of inherent methods on the
  integer types, and direct implementation of operations on
  `Wrapping&lt;X&gt;` for each concrete integer type `X`.

Closes #22985
Closes #21069

[breaking-change]
</content>
</entry>
<entry>
<title>Mass rename uint/int to usize/isize</title>
<updated>2015-03-26T19:10:22+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-03-26T00:06:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=43bfaa4a336095eb5697fb2df50909fd3c72ed14'/>
<id>urn:sha1:43bfaa4a336095eb5697fb2df50909fd3c72ed14</id>
<content type='text'>
Now that support has been removed, all lingering use cases are renamed.
</content>
</entry>
<entry>
<title>Register new snapshots</title>
<updated>2015-03-18T23:32:32+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-03-18T16:36:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=fccf5a00056b1d72065951a4428070326df1cfb5'/>
<id>urn:sha1:fccf5a00056b1d72065951a4428070326df1cfb5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>impl&lt;T&gt; [T]</title>
<updated>2015-03-17T02:56:31+00:00</updated>
<author>
<name>Jorge Aparicio</name>
<email>japaricious@gmail.com</email>
</author>
<published>2015-03-11T04:13:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=633c593bc3f9787decfaf943cdc5659f132ade50'/>
<id>urn:sha1:633c593bc3f9787decfaf943cdc5659f132ade50</id>
<content type='text'>
</content>
</entry>
<entry>
<title>impl str</title>
<updated>2015-03-17T02:56:31+00:00</updated>
<author>
<name>Jorge Aparicio</name>
<email>japaricious@gmail.com</email>
</author>
<published>2015-03-11T04:13:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5b118f5ecde796ad62fa349a045d7ad8129b711c'/>
<id>urn:sha1:5b118f5ecde796ad62fa349a045d7ad8129b711c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>impl char</title>
<updated>2015-03-17T02:56:31+00:00</updated>
<author>
<name>Jorge Aparicio</name>
<email>japaricious@gmail.com</email>
</author>
<published>2015-03-11T04:13:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b2f37554bf9f2b55fa6ba6ba8e8eaf1826301b4e'/>
<id>urn:sha1:b2f37554bf9f2b55fa6ba6ba8e8eaf1826301b4e</id>
<content type='text'>
</content>
</entry>
</feed>
