Uint32Array

open external class Uint32Array : ArrayBufferView

Exposes the JavaScript Uint32Array to Kotlin

Constructors

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

Types

Link copied to clipboard
object Companion

Functions

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

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 Uint32Array.get(index: Int): Int
Link copied to clipboard
inline operator fun Uint32Array.set(index: Int, value: Int)