KoneIterator

interface KoneIterator<out Element>(source)

Represents an iterator over some elements (maybe even infinite number of elements) in some (maybe temporary) order.

In each moment it has a cursor pointing either between two elements, before the first one, or after the last one. If there are no elements in the collection, the pointer just points nowhere. All operations are made either before or after the cursor with previous or next element correspondingly.

Inheritors

Functions

Link copied to clipboard
Link copied to clipboard
inline fun <E, R> KoneIterator<E>.fold(initial: R, operation: (acc: R, E) -> R): R
Link copied to clipboard
inline fun <E, R> KoneIterator<E>.foldIndexed(initial: R, operation: (index: UInt, acc: R, E) -> R): R
Link copied to clipboard

Gets the next element, moves forward, and returns the got element.

Link copied to clipboard
abstract fun getNext(): Element

Returns next element in the order or throws NoFollowingElementInIteratorException if there is no next element.

Link copied to clipboard
abstract operator fun hasNext(): Boolean

Returns true iff there is next element in the order.

Link copied to clipboard
inline operator fun <E> KoneIterator<E>.iterator(): KoneIterator<E>
Link copied to clipboard
abstract fun moveNext()

Moves forward bypassing next element or throws NoFollowingElementInIteratorException if there is no next element.

Link copied to clipboard
inline operator fun <Element> KoneIterator<Element>.next(): Element

Gets the next element moves forward and returns the got element. It is an operator function to use in for cycles.

Link copied to clipboard
inline fun <E : R, R> KoneIterator<E>.reduce(operation: (acc: R, E) -> R): R
Link copied to clipboard
inline fun <E : R, R> KoneIterator<E>.reduceIndexed(operation: (index: UInt, acc: R, E) -> R): R
Link copied to clipboard
inline fun <E : R, R> KoneIterator<E>.reduceIndexedMaybe(operation: (index: UInt, acc: R, E) -> R): Maybe<R>
Link copied to clipboard
inline fun <E : R, R> KoneIterator<E>.reduceIndexedOrNull(operation: (index: UInt, acc: R, E) -> R): R?
Link copied to clipboard
inline fun <E : R, R> KoneIterator<E>.reduceMaybe(operation: (acc: R, E) -> R): Maybe<R>
Link copied to clipboard
inline fun <E : R, R> KoneIterator<E>.reduceOrNull(operation: (acc: R, E) -> R): R?
Link copied to clipboard
inline fun <E, R> KoneIterator<E>.runningFold(initial: R, operation: (acc: R, E) -> R): KoneList<R>
Link copied to clipboard
inline fun <E, R> KoneIterator<E>.runningFoldIndexed(initial: R, operation: (index: UInt, acc: R, E) -> R): KoneList<R>
Link copied to clipboard