Collection

interface Collection<T>

Inheritors

Properties

Link copied to clipboard
abstract val count: Int
Link copied to clipboard
open val isEmpty: Boolean
Link copied to clipboard

Functions

Link copied to clipboard
abstract fun insert(element: T)
Link copied to clipboard
abstract fun remove(): T?
Link copied to clipboard
abstract fun removeAt(index: Int): T?