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

Gets the previous element, moves backward, 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 fun getPrevious(): Element

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

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

Returns true iff there is next element in the order.

Link copied to clipboard
abstract fun hasPrevious(): Boolean

Returns true iff there is previous 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
abstract fun movePrevious()

Moves backward bypassing previous element or throws NoFollowingElementInIteratorException if there is no previous 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
abstract fun nextIndex(): UInt

Returns index of the next element if it's present or throws NoFollowingElementInIteratorException if there is no next element.

Link copied to clipboard
abstract fun previousIndex(): UInt

Returns index of the previous element if it's present or throws NoFollowingElementInIteratorException if there is no previous element.

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
abstract fun setNext(element: Element)

Changes the next element if it is present or throws NoFollowingElementInIteratorException if there is no next element.

Link copied to clipboard
abstract fun setPrevious(element: Element)

Changes the previous element if it is present or throws NoFollowingElementInIteratorException if there is no previous element.

Link copied to clipboard