KoneDeque

Represents a finite sequence of elements that can be extended or reduced from both its ends.

This interface's inheritors must have some specific structure that provides optimised elements access and mutability. Without it (or with bad time complexity like \(O(n)\)) the interface should not be used.

Inheritors

Properties

Link copied to clipboard
abstract val size: UInt

Number of elements in the collection.

Functions

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

Adds the element to the beginning of the collection, making it the first element in the collection.

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

Adds the element to the end of the collection, making it the last element in the collection.

Link copied to clipboard
abstract fun getFirst(): Element

Returns the first element. The element is placed at the beginning of the sequence.

Link copied to clipboard
abstract fun getLast(): Element

Returns the last element. The element is placed at the end of the sequence.

Link copied to clipboard

Checks if the collection is empty.

Link copied to clipboard

Checks if the collection is not empty.

Link copied to clipboard

Returns and removes the first element. The element was placed at the beginning of the sequence.

Link copied to clipboard

Returns and removes the last element. The element was placed at the end of the sequence.

Link copied to clipboard
abstract fun removeAll()

Removes all elements from the collection.

Link copied to clipboard
abstract fun removeFirst()

Removes the first element, making the collection one element fewer. The element is placed at the beginning of the sequence.

Link copied to clipboard
abstract fun removeLast()

Removes the last element, making the collection one element fewer. The element is placed at the end of the sequence.