inner: BitSet.Iterator(.{})
pub fn next(self: *Iterator) ?Key
self: *Iterator
pub fn next(self: *Iterator) ?Key { return if (self.inner.next()) |index| Indexer.keyForIndex(index) else null; }
pub const Iterator = struct { inner: BitSet.Iterator(.{}), pub fn next(self: *Iterator) ?Key { return if (self.inner.next()) |index| Indexer.keyForIndex(index) else null; } }
Press escape to exit search and then '?' to see more options.