Lines Matching defs:IntoIter
101 pub use self::into_iter::IntoIter;
2941 <Self as SpecFromIter<T, I::IntoIter>>::from_iter(iter.into_iter())
2948 type IntoIter = IntoIter<T, A>;
2967 fn into_iter(self) -> Self::IntoIter {
2978 IntoIter {
2993 type IntoIter = slice::Iter<'a, T>;
2995 fn into_iter(self) -> Self::IntoIter {
3003 type IntoIter = slice::IterMut<'a, T>;
3005 fn into_iter(self) -> Self::IntoIter {
3015 <Self as SpecExtend<T, I::IntoIter>>::spec_extend(self, iter.into_iter())
3184 pub fn splice<R, I>(&mut self, range: R, replace_with: I) -> Splice<'_, I::IntoIter, A>