iterator
inline operator fun <T> Iterator<T>.iterator(): Iterator<T>
Returns the given iterator itself. This allows to use an instance of iterator in a for
loop.
inline operator fun <K, V> Map<out K, V>.iterator(): Iterator<Entry<K, V>>
Returns an Iterator over the entries in the Map.