halfbrown 0.1.10

Multi backend HashMap for higher performance on different key space sizes
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::VecMap;

impl<K, V, S> IntoIterator for VecMap<K, V, S> {
    type Item = (K, V);
    type IntoIter = std::vec::IntoIter<(K, V)>;

    #[inline]
    fn into_iter(self) -> std::vec::IntoIter<(K, V)> {
        self.v.into_iter()
    }
}