Float64Array

open external class Float64Array : ArrayBufferView

Exposes the JavaScript Float64Array to Kotlin

Constructors

Link copied to clipboard
fun Float64Array(length: Int)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun Float64Array(    buffer: ArrayBuffer,     byteOffset: Int = definedExternally,     length: Int = definedExternally)

Types

Link copied to clipboard
object Companion

Functions

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

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