Function iterator [src]
Returns an iterator over the items stored in the set.
Iteration order is arbitrary.
Prototype
pub fn iterator(self: *const BufSet) Iterator
Parameters
self: *const BufSet
Source
pub fn iterator(self: *const BufSet) Iterator {
return self.hash_map.keyIterator();
}