class PeekingIterator<out T> : Iterator<T> |
|
data class WithIndex<out T>
|
fun <E> E.forThisAndForEachIn(iterable: Iterable<E>, action: (E) -> Unit): Unit
Applies action to fun <E> E.forThisAndForEachIn(sequence: Sequence<E>, action: (E) -> Unit): Unit
|
|
infix fun <T> T.glue(otherArgs: Array<out T>): List<T>
Delegates to varargToList -- adds |
|
fun <T> varargToList(arg: T, otherArgs: Array<out T>): List<T>
Adds the given arg and the otherArgs into a new List and returns it. |