MCPcopy Create free account
hub / github.com/Lokathor/tinyvec / into_iter

Method into_iter

src/arrayvec.rs:1613–1615  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1611 type IntoIter = ArrayVecIterator<A>;
1612 #[inline(always)]
1613 fn into_iter(self) -> Self::IntoIter {
1614 ArrayVecIterator { base: 0, tail: self.len, data: self.data }
1615 }
1616}
1617
1618impl<'a, A: Array> IntoIterator for &'a mut ArrayVec<A> {

Callers 2

fillMethod · 0.45
spliceMethod · 0.45

Calls 1

iterMethod · 0.80

Tested by

no test coverage detected