<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/num/usize.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-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>Address feedback</title>
<updated>2015-07-21T00:12:59+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-07-21T00:12:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=778c89c1bb86dbd370e8b51911e2916180f42aec'/>
<id>urn:sha1:778c89c1bb86dbd370e8b51911e2916180f42aec</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: Create separate docs for the primitives</title>
<updated>2015-07-20T20:18:06+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-07-20T18:21:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8497c428e5da665917304ae404b9b3e7b0a94466'/>
<id>urn:sha1:8497c428e5da665917304ae404b9b3e7b0a94466</id>
<content type='text'>
Having the primitive and module docs derived from the same source
causes problems, primarily that they can't contain hyperlinks
cross-referencing each other.

This crates dedicated private modules in `std` to document the
primitive types, then for all primitives that have a corresponding
module, puts hyperlinks in moth the primitive docs and the module docs
cross-linking each other.

This should help clear up confusion when readers find themselves on
the wrong page.
</content>
</entry>
<entry>
<title>doc: Clean up primitive short descriptions</title>
<updated>2015-07-20T20:17:41+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-07-17T23:28:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=44dd247cd5ced8ae8a8c6f1d04463abce21c8e9e'/>
<id>urn:sha1:44dd247cd5ced8ae8a8c6f1d04463abce21c8e9e</id>
<content type='text'>
This makes the primitive descriptions on the front page read properly
as descriptions of types and not of the associated modules.
</content>
</entry>
<entry>
<title>Remove mentions of int / uint from the isize / usize docs</title>
<updated>2015-05-27T23:16:00+00:00</updated>
<author>
<name>Jake Goulding</name>
<email>jake.goulding@gmail.com</email>
</author>
<published>2015-05-27T23:16:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=875d3562452930657ab59766568c02bcfab851bd'/>
<id>urn:sha1:875d3562452930657ab59766568c02bcfab851bd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>grandfathered -&gt; rust1</title>
<updated>2015-01-24T05:48:20+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-01-24T05:48:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b44ee371b8beea77aa1364460acbba14a8516559'/>
<id>urn:sha1:b44ee371b8beea77aa1364460acbba14a8516559</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>
<entry>
<title>Add isize, usize modules, deprecate int, uint modules</title>
<updated>2015-01-07T19:40:11+00:00</updated>
<author>
<name>Aaron Turon</name>
<email>aturon@mozilla.com</email>
</author>
<published>2015-01-07T18:39:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7deb9abd1b45f3e56ca6b13432866ae89886f21f'/>
<id>urn:sha1:7deb9abd1b45f3e56ca6b13432866ae89886f21f</id>
<content type='text'>
This PR introduces `isize` and `usize` modules to `core` and `std`, and
deprecates the existing `int` and `uint` modules. The rustdoc primitive
type links now point to these new modules.

Due to deprecation this is a:

[breaking-change]
</content>
</entry>
</feed>
