ListBuffer

class ListBuffer<T>(list: List<T>) : Buffer<T>

Buffer implementation over List.

Parameters

T

the type of elements contained in the buffer.

Constructors

Link copied to clipboard
fun <T> ListBuffer(size: Int, initializer: (Int) -> T)
Link copied to clipboard
fun <T> ListBuffer(list: List<T>)

Functions

Link copied to clipboard
open operator override fun get(index: Int): T

Gets element at given index.

Link copied to clipboard
open operator override fun iterator(): Iterator<T>

Iterates over all elements.

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val list: List<T>

The underlying list.

Link copied to clipboard
open override val size: Int

The size of this buffer.

Sources

Link copied to clipboard