Package-level declarations

Types

Link copied to clipboard
class DoubleDeque(initialCapacity: Int)

DoubleDeque is a double-ended queue for Double values backed by a circular buffer.

Link copied to clipboard
class FloatDeque(initialCapacity: Int)

FloatDeque is a double-ended queue for Float values backed by a circular buffer.

Link copied to clipboard
class IntDeque(initialCapacity: Int)

IntDeque is a double-ended queue for Int values backed by a circular buffer.

Link copied to clipboard
class LongDeque(initialCapacity: Int)

LongDeque is a double-ended queue for Long values backed by a circular buffer.

Functions

Link copied to clipboard

Returns a live List view backed by this deque.

Link copied to clipboard

Returns a live MutableList view backed by this deque. Structural changes are reflected both ways.