Struct std::hashmap::HashSetMoveIterator

pub struct HashSetMoveIterator<K> {
    priv iter: MoveRevIterator<Option<Bucket<K, ()>>>,
}

HashSet move iterator

Trait Implementations

impl<K> Iterator<K> for HashSetMoveIterator<K>

fn next(&mut self) -> Option<K>

Advance the iterator and return the next value. Return None when the end is reached.