RingBuffer

class RingBuffer<T>(size: Int)

Constructors

Link copied to clipboard
constructor(size: Int)

Properties

Link copied to clipboard
val count: Int
Link copied to clipboard
val first: T?
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun read(): T?
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun write(element: T): Boolean