Float64Array

open external class Float64Array : ArrayBufferView

Exposes the JavaScript Float64Array to Kotlin

Constructors

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

Types

Companion
Link copied to clipboard
object Companion

Functions

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

Properties

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

Extensions

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