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.
@JvmName("mutableIterator") inline operator fun <K, V> MutableMap<K, V>.iterator(): MutableIterator<MutableEntry<K, V>>
Platform and version requirements: JVM
Returns a MutableIterator over the mutable entries in the MutableMap.
© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/iterator.html