mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-27 04:20:24 +00:00
rustfmt
This commit is contained in:
parent
b36367a28e
commit
fa1e92dacd
@ -871,16 +871,16 @@ impl<K, V, const N: usize> Iterator for IntoIter<K, V, N> {
|
||||
}
|
||||
|
||||
impl<K, V, S, const N: usize> IntoIterator for IndexMap<K, V, S, N>
|
||||
where
|
||||
K: Eq + Hash,
|
||||
S: BuildHasher,
|
||||
where
|
||||
K: Eq + Hash,
|
||||
S: BuildHasher,
|
||||
{
|
||||
type Item = (K, V);
|
||||
type IntoIter = IntoIter<K, V, N>;
|
||||
|
||||
fn into_iter(self) -> Self::IntoIter {
|
||||
IntoIter {
|
||||
entries: self.core.entries
|
||||
entries: self.core.entries,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user