<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/ui/const-generics/array-impls, branch 1.58.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.58.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.58.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2021-06-02T10:09:04+00:00</updated>
<entry>
<title>Replace IntoIter::new with IntoIterator::into_iter in std</title>
<updated>2021-06-02T10:09:04+00:00</updated>
<author>
<name>Muhammad Mominul Huque</name>
<email>mominul2082@gmail.com</email>
</author>
<published>2021-05-30T17:16:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=01d4d46f66929122cc890279cde4765df7a0a90f'/>
<id>urn:sha1:01d4d46f66929122cc890279cde4765df7a0a90f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Stabilize by-value `[T; N]` iterator `core::array::IntoIter`</title>
<updated>2020-12-29T08:16:46+00:00</updated>
<author>
<name>Simon Sapin</name>
<email>simon.sapin@exyr.org</email>
</author>
<published>2020-12-29T08:16:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=61c49d4042af6d392784925cc53afdc830740cd4'/>
<id>urn:sha1:61c49d4042af6d392784925cc53afdc830740cd4</id>
<content type='text'>
Tracking issue: https://github.com/rust-lang/rust/issues/65798

This is unblocked now that `min_const_generics` has been stabilized
in https://github.com/rust-lang/rust/pull/79135.

This PR does *not* include the corresponding `IntoIterator` impl,
which is https://github.com/rust-lang/rust/pull/65819.
Instead, an iterator can be constructed through the `new` method.

`new` would become unnecessary when `IntoIterator` is implemented
and might be deprecated then, although it will stay stable.
</content>
</entry>
<entry>
<title>Fix copypaste in test into-iter-impls-length-33 (const generic 32 -&gt; 33)</title>
<updated>2020-07-05T16:06:02+00:00</updated>
<author>
<name>Roman Proskuryakov</name>
<email>humbug@deeptown.org</email>
</author>
<published>2020-07-05T16:06:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=44dd95e4d008e9edc112dc1a599eac028889e015'/>
<id>urn:sha1:44dd95e4d008e9edc112dc1a599eac028889e015</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove the usage of the LengthAtMost32 trait</title>
<updated>2020-07-05T12:47:08+00:00</updated>
<author>
<name>Roman Proskuryakov</name>
<email>humbug@deeptown.org</email>
</author>
<published>2020-07-05T12:02:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=eff62069ad602090e8d27b83cffd9e77479ed4be'/>
<id>urn:sha1:eff62069ad602090e8d27b83cffd9e77479ed4be</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Show the values and computation that would overflow a const evaluation or propagation</title>
<updated>2020-06-26T08:08:52+00:00</updated>
<author>
<name>Oliver Scherer</name>
<email>github35764891676564198441@oli-obk.de</email>
</author>
<published>2020-06-19T16:57:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=819cde5dabd90dab1fb462cd713457421d0ebd36'/>
<id>urn:sha1:819cde5dabd90dab1fb462cd713457421d0ebd36</id>
<content type='text'>
</content>
</entry>
<entry>
<title>impl From&lt;[T; N]&gt; for Box&lt;[T]&gt;</title>
<updated>2020-05-20T09:00:21+00:00</updated>
<author>
<name>Ivan Tham</name>
<email>pickfire@riseup.net</email>
</author>
<published>2020-04-13T13:41:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a8ed9aa9f016c60f5fa55326f1f6a30e2be9d83e'/>
<id>urn:sha1:a8ed9aa9f016c60f5fa55326f1f6a30e2be9d83e</id>
<content type='text'>
Based on https://github.com/rust-lang/rust/pull/68692
</content>
</entry>
<entry>
<title>Auto merge of #71447 - cuviper:unsized_cow, r=dtolnay</title>
<updated>2020-05-19T08:08:48+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2020-05-19T08:08:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=914adf04af1c1a984707f778da3d04590c03d144'/>
<id>urn:sha1:914adf04af1c1a984707f778da3d04590c03d144</id>
<content type='text'>
impl From&lt;Cow&gt; for Box, Rc, and Arc

These forward `Borrowed`/`Owned` values to existing `From` impls.

- `Box&lt;T&gt;` is a fundamental type, so it would be a breaking change to add a blanket impl. Therefore, `From&lt;Cow&gt;` is only implemented for `[T]`, `str`, `CStr`, `OsStr`, and `Path`.
- For `Rc&lt;T&gt;` and `Arc&lt;T&gt;`, `From&lt;Cow&gt;` is implemented for everything that implements `From` the borrowed and owned types separately.
</content>
</entry>
<entry>
<title>display `ConstKind::Param`</title>
<updated>2020-05-09T15:10:40+00:00</updated>
<author>
<name>Bastian Kauschke</name>
<email>bastian_kauschke@hotmail.de</email>
</author>
<published>2020-05-09T15:10:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0db2aec14a93fd9c5b084aa5f973d3609e625bf6'/>
<id>urn:sha1:0db2aec14a93fd9c5b084aa5f973d3609e625bf6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bless From&lt;Cow&gt; UI changes</title>
<updated>2020-04-22T21:40:27+00:00</updated>
<author>
<name>Josh Stone</name>
<email>jistone@redhat.com</email>
</author>
<published>2020-04-22T21:40:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=22efd959109b9a231edbc81a8bc818eaa5763e78'/>
<id>urn:sha1:22efd959109b9a231edbc81a8bc818eaa5763e78</id>
<content type='text'>
</content>
</entry>
<entry>
<title>bless UI tests</title>
<updated>2020-03-10T23:44:46+00:00</updated>
<author>
<name>Joshua Nelson</name>
<email>jyn514@gmail.com</email>
</author>
<published>2020-01-31T18:59:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ba46b61bbcd0d2860105c429cf73254c388e9118'/>
<id>urn:sha1:ba46b61bbcd0d2860105c429cf73254c388e9118</id>
<content type='text'>
</content>
</entry>
</feed>
