MutableMemoryBuffer

class MutableMemoryBuffer<T : Any>(memory: Memory, spec: MemorySpec<T>) : MemoryBuffer<T> , MutableBuffer<T>

A mutable non-boxing buffer over Memory object.

Parameters

T

the type of elements contained in the buffer.

Constructors

MutableMemoryBuffer
Link copied to clipboard
common
fun <T : Any> MutableMemoryBuffer(memory: Memory, spec: MemorySpec<T>)
the type of elements contained in the buffer.

Types

Companion
Link copied to clipboard
common
object Companion

Functions

copy
Link copied to clipboard
common
open override fun copy(): MutableBuffer<T>
Returns a shallow copy of the buffer.
get
Link copied to clipboard
common
open operator override fun get(index: Int): T
Gets element at given index.
iterator
Link copied to clipboard
common
open operator override fun iterator(): Iterator<T>
Iterates over all elements.
set
Link copied to clipboard
common
open operator override fun set(index: Int, value: T)
Sets the array element at the specified index to the specified value.
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

size
Link copied to clipboard
common
open override val size: Int
The size of this buffer.

Sources

common source
Link copied to clipboard