HH\ImmSet::getIterator
Returns an iterator that points to beginning of the current ImmSet
public function getIterator(): HH\Rx\KeyedIterator<arraykey, Tv>;
The keys and values when iterating through the KeyedIterator
will be
identical since ImmSet
s have no keys, the values are used as keys.
Returns
HH\Rx\KeyedIterator<arraykey, Tv>
- AKeyedIterator
that allows you to traverse the currentImmSet
.
Examples
See Set::getIterator
for usage examples.