Int8Array

open external class Int8Array : ArrayBufferView

Exposes the JavaScript Int8Array to Kotlin

Constructors

Link copied to clipboard
fun Int8Array(length: Int)
Link copied to clipboard
fun Int8Array(array: Int8Array)
Link copied to clipboard
fun Int8Array(array: Array<Byte>)
Link copied to clipboard
fun Int8Array(    buffer: ArrayBuffer,     byteOffset: Int = definedExternally,     length: Int = definedExternally)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
fun set(array: Array<Byte>, offset: Int = definedExternally)
fun set(array: Int8Array, offset: Int = definedExternally)
Link copied to clipboard
fun subarray(start: Int, end: Int): Int8Array

Properties

Link copied to clipboard
open override val buffer: ArrayBuffer
Link copied to clipboard
open override val byteLength: Int
Link copied to clipboard
open override val byteOffset: Int
Link copied to clipboard
open val length: Int

Extensions

Link copied to clipboard
inline operator fun Int8Array.get(index: Int): Byte
Link copied to clipboard
inline operator fun Int8Array.set(index: Int, value: Byte)