MapKeys[K: K, V: V, H: HashFunction[K] val, M: HashMap[K, V, H] #read]¶
An iterator over the keys in a map.
class ref MapKeys[K: K, V: V, H: HashFunction[K] val, M: HashMap[K, V, H] #read] is
Iterator[M->K] ref
Implements¶
- Iterator[M->K] ref
Constructors¶
create¶
Creates an iterator for the given map.
Parameters¶
- map: M
Returns¶
- MapKeys[K, V, H, M] ref^
Public Functions¶
has_next¶
True if it believes there are remaining entries. May not be right if values were added or removed from the map.
Returns¶
- Bool val
next¶
Returns the next key, or raises an error if there isn't one. If keys are added during iteration, this may not return all keys.
Returns¶
- M->K ?