FakeMutableIterator

class FakeMutableIterator<K>(val iterator: Iterator<K>) : MutableIterator<K> , Iterator<K>

Constructors

Link copied to clipboard
constructor(iterator: Iterator<K>)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
Link copied to clipboard
open operator override fun hasNext(): Boolean
Link copied to clipboard
open operator override fun next(): K
Link copied to clipboard
open override fun remove(): Nothing
Link copied to clipboard
fun <T> Iterator<T>.toList(): List<T>