Package-level declarations

Types

Link copied to clipboard
class Queue<T> : Collection<T> , Iterator<T>

Example:

Functions

Link copied to clipboard
inline fun max(a: Int, b: Int): Int
Link copied to clipboard
inline fun min(a: Int, b: Int): Int
Link copied to clipboard
fun <T> queueOf(vararg values: T): Queue<T>
fun <T> queueOf(values: Iterable<T>): Queue<T>

Creates a new Queue instance wrapping the given values.