Inline Iterator as IntoIterator.

This commit is contained in:
Camille GILLOT 2021-04-25 21:18:42 +02:00
parent 83ebb00645
commit 15c8a0efc0

View File

@ -238,6 +238,7 @@ impl<I: Iterator> IntoIterator for I {
type Item = I::Item;
type IntoIter = I;
#[inline]
fn into_iter(self) -> I {
self
}