<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libcoretest/str.rs, branch 1.6.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.6.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.6.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-04-05T16:52:58+00:00</updated>
<entry>
<title>Moved coretest::str tests into collectiontest::str</title>
<updated>2015-04-05T16:52:58+00:00</updated>
<author>
<name>Marvin Löbel</name>
<email>loebel.marvin@gmail.com</email>
</author>
<published>2015-04-01T20:45:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c29559d28acb34884769c884703c2c5de3397d2b'/>
<id>urn:sha1:c29559d28acb34884769c884703c2c5de3397d2b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refactored core::str::pattern to become a user-facing module and hide away</title>
<updated>2015-04-05T16:52:57+00:00</updated>
<author>
<name>Marvin Löbel</name>
<email>loebel.marvin@gmail.com</email>
</author>
<published>2015-03-23T13:21:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c04f22a667123b39f16452af6fa65c82b2f8c0a2'/>
<id>urn:sha1:c04f22a667123b39f16452af6fa65c82b2f8c0a2</id>
<content type='text'>
CharEq.
</content>
</entry>
<entry>
<title>std: Changing the meaning of the count to splitn</title>
<updated>2015-04-01T20:29:42+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-04-01T18:28:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e98dce3e00a7b6bfd264418ef993bbf9cdb1f0b6'/>
<id>urn:sha1:e98dce3e00a7b6bfd264418ef993bbf9cdb1f0b6</id>
<content type='text'>
This commit is an implementation of [RFC 979][rfc] which changes the meaning of
the count parameter to the `splitn` function on strings and slices. The
parameter now means the number of items that are returned from the iterator, not
the number of splits that are made.

[rfc]: https://github.com/rust-lang/rfcs/pull/979

Closes #23911
[breaking-change]
</content>
</entry>
<entry>
<title>std: Clean out #[deprecated] APIs</title>
<updated>2015-03-31T22:49:57+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-03-30T18:00:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d4a2c941809f303b97d153e06ba07e95cd245f88'/>
<id>urn:sha1:d4a2c941809f303b97d153e06ba07e95cd245f88</id>
<content type='text'>
This commit cleans out a large amount of deprecated APIs from the standard
library and some of the facade crates as well, updating all users in the
compiler and in tests as it goes along.
</content>
</entry>
<entry>
<title>Remove auto-deref'ing Pattern impl because it conflicts with other</title>
<updated>2015-03-23T22:05:20+00:00</updated>
<author>
<name>Niko Matsakis</name>
<email>niko@alum.mit.edu</email>
</author>
<published>2015-03-21T10:02:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=76ead081088d7cc88a4686210b72b60ae12bd7a8'/>
<id>urn:sha1:76ead081088d7cc88a4686210b72b60ae12bd7a8</id>
<content type='text'>
possible blanket impls and also triggers internal overflow. Add some
special cases for common uses (&amp;&amp;str, &amp;String) for now; bounds-targeting
deref coercions are probably the right longer term answer.
</content>
</entry>
<entry>
<title>std: Remove old_io/old_path from the prelude</title>
<updated>2015-03-21T03:07:19+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-03-17T20:33:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=212e03181e422f569b6426bc08b713a9efc0d0eb'/>
<id>urn:sha1:212e03181e422f569b6426bc08b713a9efc0d0eb</id>
<content type='text'>
This commit removes the reexports of `old_io` traits as well as `old_path` types
and traits from the prelude. This functionality is now all deprecated and needs
to be removed to make way for other functionality like `Seek` in the `std::io`
module (currently reexported as `NewSeek` in the io prelude).

Closes #23377
Closes #23378
</content>
</entry>
<entry>
<title>remove some compiler warnings</title>
<updated>2015-03-01T07:35:57+00:00</updated>
<author>
<name>Tshepang Lekhonkhobe</name>
<email>tshepang@gmail.com</email>
</author>
<published>2015-02-28T18:07:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=55ce45e7b52a0a360cf88cba71f59f7d3e9b2346'/>
<id>urn:sha1:55ce45e7b52a0a360cf88cba71f59f7d3e9b2346</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use arrays instead of vectors in tests</title>
<updated>2015-02-24T18:15:45+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2015-02-24T18:15:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2807a1ce0255ce98415ebe6f65eb589d0f2f894b'/>
<id>urn:sha1:2807a1ce0255ce98415ebe6f65eb589d0f2f894b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix tidy and rebase fallout</title>
<updated>2015-02-19T23:58:07+00:00</updated>
<author>
<name>Marvin Löbel</name>
<email>loebel.marvin@gmail.com</email>
</author>
<published>2015-02-17T22:47:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a641996796f0ab11021671c0ce70a3c975bb4e37'/>
<id>urn:sha1:a641996796f0ab11021671c0ce70a3c975bb4e37</id>
<content type='text'>
Added a few bugfixes and additional testcases
</content>
</entry>
<entry>
<title>Added a Pattern impl that delegates to the dereference of a type.</title>
<updated>2015-02-19T23:58:06+00:00</updated>
<author>
<name>Marvin Löbel</name>
<email>loebel.marvin@gmail.com</email>
</author>
<published>2015-02-17T21:57:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c1de0a0f9ea9863407363ce31bb698e9988215ee'/>
<id>urn:sha1:c1de0a0f9ea9863407363ce31bb698e9988215ee</id>
<content type='text'>
This allows to match with a `&amp;String` or `&amp;&amp;str`, for example.
</content>
</entry>
</feed>
