kotlin-utils
/
loggersoft.kotlin.utils
/
IndexListIterator
Index
List
Iterator
class
IndexListIterator
<out
T
>(list:
IndexList
<
T
>) :
Iterator
<
T
>
Content copied to clipboard
Implementation of
Iterator
for
IndexList
.
Author
Alexander Kornilov (akornilov.82@gmail.com).
Constructors
Functions
Constructors
IndexListIterator
Link copied to clipboard
fun <out
T
>
IndexListIterator
(list:
IndexList
<
T
>)
Content copied to clipboard
Functions
forEachRemaining
Link copied to clipboard
open fun
forEachRemaining
(p0:
Consumer
<in
T
>)
Content copied to clipboard
hasNext
Link copied to clipboard
open operator override fun
hasNext
():
Boolean
Content copied to clipboard
Returns
true
if the iteration has more elements.
next
Link copied to clipboard
open operator override fun
next
():
T
Content copied to clipboard
Returns the next element in the iteration.