Function iterator [src]
Iterates through the items in the set, according to the options.
The default options (.{}) will iterate indices of set bits in
ascending order. Modifications to the underlying bit set may
or may not be observed by the iterator. Resizing the underlying
bit set invalidates the iterator.
Prototype
pub fn iterator(self: *const Self, comptime options: IteratorOptions) Iterator(options)
Parameters
self: *const Self
options: IteratorOptions
Source
pub fn iterator(self: *const Self, comptime options: IteratorOptions) Iterator(options) {
return self.unmanaged.iterator(options);
}