<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/num/uint_macros.rs, branch perf-tmp</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=perf-tmp</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=perf-tmp'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-08-17T21:03:32+00:00</updated>
<entry>
<title>std: Clean up primitive integer modules</title>
<updated>2015-08-17T21:03:32+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-08-17T20:23:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8cb4d8671afecdcfd2432e08c8f43673ce51f67d'/>
<id>urn:sha1:8cb4d8671afecdcfd2432e08c8f43673ce51f67d</id>
<content type='text'>
All of the modules in the standard library were just straight reexports of those
in libcore, so remove all the "macro modules" from the standard library and just
reexport what's in core directly.
</content>
</entry>
<entry>
<title>Fix negate_unsigned feature gate check</title>
<updated>2015-07-14T18:48:43+00:00</updated>
<author>
<name>Simonas Kazlauskas</name>
<email>git@kazlauskas.me</email>
</author>
<published>2015-07-13T22:03:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0c9e3dc75cf2b2d122af0596225594240ed254eb'/>
<id>urn:sha1:0c9e3dc75cf2b2d122af0596225594240ed254eb</id>
<content type='text'>
This commit fixes the negate_unsigned feature gate to appropriately
account for infered variables.

This is technically a [breaking-change].
</content>
</entry>
<entry>
<title>std: Split the `std_misc` feature</title>
<updated>2015-06-17T16:06:59+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-06-10T01:15:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6895311e859e1859f9b3f0adc9f1fbb4d2891534'/>
<id>urn:sha1:6895311e859e1859f9b3f0adc9f1fbb4d2891534</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: Bring back f32::from_str_radix as an unstable API</title>
<updated>2015-04-21T22:23:54+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-04-18T06:45:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a568a7f9f2eb3fa3f3e049df288ef0ad32cc7881'/>
<id>urn:sha1:a568a7f9f2eb3fa3f3e049df288ef0ad32cc7881</id>
<content type='text'>
This API was exercised in a few tests and mirrors the `from_str_radix`
functionality of the integer types.
</content>
</entry>
<entry>
<title>shift int/uint tests around to avoid code repetition</title>
<updated>2015-02-22T03:38:35+00:00</updated>
<author>
<name>GlacJAY</name>
<email>glacjay@gmail.com</email>
</author>
<published>2015-02-22T03:38:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c2a2b1050799609658ab9662bf93842bba6631ba'/>
<id>urn:sha1:c2a2b1050799609658ab9662bf93842bba6631ba</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.</title>
<updated>2015-02-18T14:09:12+00:00</updated>
<author>
<name>Niko Matsakis</name>
<email>niko@alum.mit.edu</email>
</author>
<published>2015-02-17T14:47:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2b5720a15fd7e8ae3883dcaee556b000e962b052'/>
<id>urn:sha1:2b5720a15fd7e8ae3883dcaee556b000e962b052</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: Stabilize FromStr and parse</title>
<updated>2015-01-30T16:52:44+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-01-28T06:52:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0cdde6e5e015ee6f6d9381ab624a312af7c9b069'/>
<id>urn:sha1:0cdde6e5e015ee6f6d9381ab624a312af7c9b069</id>
<content type='text'>
This commits adds an associated type to the `FromStr` trait representing an
error payload for parses which do not succeed. The previous return value,
`Option&lt;Self&gt;` did not allow for this form of payload. After the associated type
was added, the following attributes were applied:

* `FromStr` is now stable
* `FromStr::Err` is now stable
* `FromStr::from_str` is now stable
* `StrExt::parse` is now stable
* `FromStr for bool` is now stable
* `FromStr for $float` is now stable
* `FromStr for $integral` is now stable
* Errors returned from stable `FromStr` implementations are stable
* Errors implement `Display` and `Error` (both impl blocks being `#[stable]`)

Closes #15138
</content>
</entry>
<entry>
<title>Set unstable feature names appropriately</title>
<updated>2015-01-23T21:28:40+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-01-23T02:22:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cd6d9eab5d75584edfcae4ffdef8b0836db80c1e'/>
<id>urn:sha1:cd6d9eab5d75584edfcae4ffdef8b0836db80c1e</id>
<content type='text'>
* `core` - for the core crate
* `hash` - hashing
* `io` - io
* `path` - path
* `alloc` - alloc crate
* `rand` - rand crate
* `collections` - collections crate
* `std_misc` - other parts of std
* `test` - test crate
* `rustc_private` - everything else
</content>
</entry>
<entry>
<title>Remove 'since' from unstable attributes</title>
<updated>2015-01-22T03:25:55+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-01-22T00:15:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=41278c5441f484a68a20ca12d93cab368a2a943f'/>
<id>urn:sha1:41278c5441f484a68a20ca12d93cab368a2a943f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add 'feature' and 'since' to stability attributes</title>
<updated>2015-01-22T00:16:18+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-01-13T02:40:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=94ca8a361026d1a622a961e8dc8cacc331ed1ac3'/>
<id>urn:sha1:94ca8a361026d1a622a961e8dc8cacc331ed1ac3</id>
<content type='text'>
</content>
</entry>
</feed>
