Float64Array

open external class Float64Array : ArrayBufferView

Exposes the JavaScript Float64Array to Kotlin

Constructors

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

Types

Companion
Link copied to clipboard
JS
object Companion

Functions

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

Properties

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

Extensions

get
Link copied to clipboard
JS
inline operator fun Float64Array.get(index: Int): Double
set
Link copied to clipboard
JS
inline operator fun Float64Array.set(index: Int, value: Double)