Package-level declarations

Types

Link copied to clipboard
@Serializable(with = DefaultKoneExtendableIterableSerializer::class)
interface KoneExtendableIterable<Element> : KoneIterable<Element>

Represents KoneIterable that can be iterated by KoneExtendableIterator.

Link copied to clipboard

Represents a KoneIterator that can add element right after its pointer.

Link copied to clipboard
@Serializable(with = DefaultKoneExtendableLinearIterableSerializer::class)
interface KoneExtendableLinearIterable<Element> : KoneLinearIterable<Element> , KoneReversibleExtendableIterable<Element>

Represents KoneIterable that can be iterated by KoneExtendableLinearIterator.

Link copied to clipboard
@Serializable(with = DefaultKoneIterableSerializer::class)
interface KoneIterable<out Element>

Represents a finite collection of elements with described size and iteration over it.

Link copied to clipboard
interface KoneIterator<out Element>

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

Link copied to clipboard
@Serializable(with = DefaultKoneLinearIterableSerializer::class)
interface KoneLinearIterable<out Element> : KoneReversibleIterable<Element>

Represents KoneIterable that can be iterated by KoneLinearIterator.

Link copied to clipboard

Represents a KoneReversibleIterator over some set of elements that has permanent order on the elements and permanent indices of the elements.

Link copied to clipboard
@Serializable(with = DefaultKoneMutableIterableSerializer::class)
interface KoneMutableIterable<Element> : KoneSettableIterable<Element> , KoneExtendableIterable<Element> , KoneRemovableIterable<Element>

Represents KoneIterable that can be iterated by KoneMutableIterator.

Link copied to clipboard

Represents a KoneIterator that can add, set, and remove the next element.

Link copied to clipboard

Represents KoneIterable that can be iterated by KoneMutableLinearIterator.

Link copied to clipboard
@Serializable(with = DefaultKoneRemovableIterableSerializer::class)
interface KoneRemovableIterable<out Element> : KoneIterable<Element>

Represents KoneIterable that can be iterated by KoneRemovableIterator.

Link copied to clipboard

Represents a KoneIterator that can remove the next element if it's present.

Link copied to clipboard
@Serializable(with = DefaultKoneRemovableLinearIterableSerializer::class)
interface KoneRemovableLinearIterable<out Element> : KoneLinearIterable<Element> , KoneReversibleRemovableIterable<Element>

Represents KoneIterable that can be iterated by KoneRemovableLinearIterator.

Link copied to clipboard
@Serializable(with = DefaultKoneReversibleExtendableIterableSerializer::class)
interface KoneReversibleExtendableIterable<Element> : KoneReversibleIterable<Element> , KoneExtendableIterable<Element>

Represents KoneIterable that can be iterated by KoneReversibleExtendableIterator.

Link copied to clipboard

Represents a KoneReversibleIterator that can add element right after and right before its pointer.

Link copied to clipboard
@Serializable(with = DefaultKoneReversibleIterableSerializer::class)
interface KoneReversibleIterable<out Element> : KoneIterable<Element>

Represents KoneIterable that can be iterated by KoneReversibleIterator.

Link copied to clipboard

Represents an KoneIterator that can iterate over the elements in both directions, forward and backward.

Link copied to clipboard

Represents KoneIterable that can be iterated by KoneReversibleMutableIterator.

Link copied to clipboard
@Serializable(with = DefaultKoneReversibleRemovableIterableSerializer::class)
interface KoneReversibleRemovableIterable<out Element> : KoneReversibleIterable<Element> , KoneRemovableIterable<Element>

Represents KoneIterable that can be iterated by KoneReversibleRemovableIterator.

Link copied to clipboard

Represents a KoneReversibleIterator that can remove the next and the previous elements if they're present.

Link copied to clipboard
@Serializable(with = DefaultKoneReversibleSettableIterableSerializer::class)
interface KoneReversibleSettableIterable<Element> : KoneReversibleIterable<Element> , KoneSettableIterable<Element>

Represents KoneIterable that can be iterated by KoneReversibleSettableIterator.

Link copied to clipboard

Represents a KoneReversibleIterator that can change value of the next element and the previous element if they're present.

Link copied to clipboard
@Serializable(with = DefaultKoneSettableIterableSerializer::class)
interface KoneSettableIterable<Element> : KoneIterable<Element>

Represents KoneIterable that can be iterated by KoneSettableIterator.

Link copied to clipboard

Represents a KoneIterator that can change value of the next element if it's present.

Link copied to clipboard
@Serializable(with = DefaultKoneSettableLinearMutableIterableSerializer::class)
interface KoneSettableLinearIterable<Element> : KoneLinearIterable<Element> , KoneReversibleSettableIterable<Element>

Represents KoneIterable that can be iterated by KoneSettableLinearIterator.

Functions

Link copied to clipboard
operator fun <Element> KoneIterable<Element>.contains(element: Element): Boolean
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

Checks if the iterable is empty.

Link copied to clipboard

Checks if the iterable is not empty.

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.