<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libcore/array, branch 1.41.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.41.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.41.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2019-11-27T09:27:30+00:00</updated>
<entry>
<title>Update mod.rs</title>
<updated>2019-11-27T09:27:30+00:00</updated>
<author>
<name>Dylan DPC</name>
<email>dylan.dpc@gmail.com</email>
</author>
<published>2019-11-27T09:27:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ce9b6972c25c1499c17821d2b4a51238e79f0355'/>
<id>urn:sha1:ce9b6972c25c1499c17821d2b4a51238e79f0355</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixes small typo in array docs r? @steveklabnik</title>
<updated>2019-11-27T02:04:28+00:00</updated>
<author>
<name>Mark Lodato</name>
<email>mlodato517@gmail.com</email>
</author>
<published>2019-11-27T01:58:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9dc3f4b05bbdacedecdfbe4116b309d5757280e1'/>
<id>urn:sha1:9dc3f4b05bbdacedecdfbe4116b309d5757280e1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use `drop_in_place` in `array::IntoIter::drop`</title>
<updated>2019-11-18T14:56:26+00:00</updated>
<author>
<name>Simon Sapin</name>
<email>simon.sapin@exyr.org</email>
</author>
<published>2019-10-25T16:11:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=74b571402f980f70a4d87ec3c778af568e4fa329'/>
<id>urn:sha1:74b571402f980f70a4d87ec3c778af568e4fa329</id>
<content type='text'>
This skips the loop when the element type is known not to have drop glue, even in debug mode.
</content>
</entry>
<entry>
<title>Snap cfgs</title>
<updated>2019-11-12T21:36:57+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2019-11-06T13:09:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=997feacddd8f6e98003428265c665f7149c49a48'/>
<id>urn:sha1:997feacddd8f6e98003428265c665f7149c49a48</id>
<content type='text'>
</content>
</entry>
<entry>
<title>The unsafety in `iter.rs` is already documented wonderfully</title>
<updated>2019-11-06T10:04:42+00:00</updated>
<author>
<name>Oliver Scherer</name>
<email>github35764891676564198441@oli-obk.de</email>
</author>
<published>2019-10-25T16:35:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e28287b32c40c44fb120c9a3a7eae6f82a7031fa'/>
<id>urn:sha1:e28287b32c40c44fb120c9a3a7eae6f82a7031fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Have tidy ensure that we document all `unsafe` blocks in libcore</title>
<updated>2019-11-06T10:04:42+00:00</updated>
<author>
<name>Oliver Scherer</name>
<email>github35764891676564198441@oli-obk.de</email>
</author>
<published>2019-08-21T17:56:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=02f9167f94a06900ee555a5797081a44ebba009e'/>
<id>urn:sha1:02f9167f94a06900ee555a5797081a44ebba009e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fill tracking issue number for `array_value_iter` and fix Rust version</title>
<updated>2019-10-25T09:37:30+00:00</updated>
<author>
<name>Lukas Kalbertodt</name>
<email>lukas.kalbertodt@gmail.com</email>
</author>
<published>2019-10-25T08:50:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=dcf343689973ef81d674c1df0f21fc9332c73f3f'/>
<id>urn:sha1:dcf343689973ef81d674c1df0f21fc9332c73f3f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add `array::IntoIter` as a consuming/by-value array iterator</title>
<updated>2019-10-24T13:46:44+00:00</updated>
<author>
<name>Lukas Kalbertodt</name>
<email>lukas.kalbertodt@gmail.com</email>
</author>
<published>2019-07-24T22:39:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a2e94ca1ee21f46eb18cd4392fa8e621ebaea20a'/>
<id>urn:sha1:a2e94ca1ee21f46eb18cd4392fa8e621ebaea20a</id>
<content type='text'>
The iterator is implemented using const generics. It implements the
traits `Iterator`, `DoubleEndedIterator`, `ExactSizeIterator`,
`FusedIterator` and `TrustedLen`. It also contains a public method
`new` to create it from an array.

`IntoIterator` was not implemented for arrays yet, as there are still
some open questions regarding backwards compatibility. This commit
only adds the iterator impl and does not yet offer a convenient way
to obtain that iterator.
</content>
</entry>
</feed>
