<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libcore/unit.rs, branch 1.37.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.37.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.37.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2019-04-18T05:47:35+00:00</updated>
<entry>
<title>libcore =&gt; 2018</title>
<updated>2019-04-18T05:47:35+00:00</updated>
<author>
<name>Taiki Endo</name>
<email>te316e89@gmail.com</email>
</author>
<published>2019-04-15T02:23:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=360432f1e8794de58cd94f34c9c17ad65871e5b5'/>
<id>urn:sha1:360432f1e8794de58cd94f34c9c17ad65871e5b5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove licenses</title>
<updated>2018-12-26T04:08:33+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2018-12-25T15:56:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2a663555ddf36f6b041445894a8c175cd1bc718c'/>
<id>urn:sha1:2a663555ddf36f6b041445894a8c175cd1bc718c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>impl FromIterator&lt;()&gt; for ()</title>
<updated>2017-10-19T06:12:37+00:00</updated>
<author>
<name>Josh Stone</name>
<email>jistone@redhat.com</email>
</author>
<published>2017-10-19T06:12:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=68d05b2a073d2679ec1621ea1ebc49b7814cf250'/>
<id>urn:sha1:68d05b2a073d2679ec1621ea1ebc49b7814cf250</id>
<content type='text'>
This just collapses all unit items from an iterator into one.  This is
more useful when combined with higher-level abstractions, like
collecting to a `Result&lt;(), E&gt;` where you only care about errors:

```rust
use std::io::*;
data = vec![1, 2, 3, 4, 5];
let res: Result&lt;()&gt; = data.iter()
    .map(|x| writeln!(stdout(), "{}", x))
    .collect();
assert!(res.is_ok());
```
</content>
</entry>
<entry>
<title>core: Remove the unit module</title>
<updated>2014-05-15T20:50:50+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2014-05-13T04:02:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a0594ebb8baa0544ed0f818c494be20b3c9957a5'/>
<id>urn:sha1:a0594ebb8baa0544ed0f818c494be20b3c9957a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>core: Inherit the unit module</title>
<updated>2014-05-07T15:13:56+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2014-05-01T03:50:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e7eed5f670e8b283e7afcba5c79b3b208167a647'/>
<id>urn:sha1:e7eed5f670e8b283e7afcba5c79b3b208167a647</id>
<content type='text'>
</content>
</entry>
<entry>
<title>core: rename unit to nil. Close #4080.</title>
<updated>2012-12-04T01:28:19+00:00</updated>
<author>
<name>Graydon Hoare</name>
<email>graydon@mozilla.com</email>
</author>
<published>2012-12-04T01:28:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2a5713ed5c129977c4c3880f633f9fce35813ab1'/>
<id>urn:sha1:2a5713ed5c129977c4c3880f633f9fce35813ab1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update license, add license boilerplate to most files. Remainder will follow.</title>
<updated>2012-12-04T01:12:14+00:00</updated>
<author>
<name>Graydon Hoare</name>
<email>graydon@mozilla.com</email>
</author>
<published>2012-12-04T00:48:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=00c856c0b1feac74df8b404fad94d74a0cf1624a'/>
<id>urn:sha1:00c856c0b1feac74df8b404fad94d74a0cf1624a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>core: Make core.rc more readable. Cleanup</title>
<updated>2012-11-30T09:32:53+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2012-11-30T08:47:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b52a4b412e515620c2c3ccbe8b7f8c7e0300f6ff'/>
<id>urn:sha1:b52a4b412e515620c2c3ccbe8b7f8c7e0300f6ff</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Register snapshots</title>
<updated>2012-11-28T20:33:00+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2012-11-28T20:33:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8179e268efd86ae5c1bcf21b4f8d4e01eea7c193'/>
<id>urn:sha1:8179e268efd86ae5c1bcf21b4f8d4e01eea7c193</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rustc: Implement explicit self for Eq and Ord. r=graydon</title>
<updated>2012-11-19T23:33:11+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2012-11-15T02:59:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=318e534895f20e7991abbc644eec311816010ef1'/>
<id>urn:sha1:318e534895f20e7991abbc644eec311816010ef1</id>
<content type='text'>
</content>
</entry>
</feed>
