Package-level declarations

Types

Link copied to clipboard
open class Deque<T>(initialCapacity: Int = 16, val scaleFactor: Float = 1.5f, val maxSize: Int)

Deque type that accepts a generic type of values.

Link copied to clipboard
open class UByteDeque(initialCapacity: Int = 16, val scaleFactor: Float = 1.5f, val maxSize: Int)

Deque of UByte values.

Functions

Link copied to clipboard
fun <T> dequeOf(vararg values: T): Deque<T>

Creates a new deque instance wrapping the given values.

Link copied to clipboard
fun ubyteDequeOf(vararg values: UByte): UByteDeque