ECMAScript 6
Adds toTypedArray
conversion to an Array[Byte]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Byte]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Char]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Char]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Double]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Double]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Float]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Float]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Int]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Int]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Short]
ECMAScript 6
Adds toTypedArray
conversion to an Array[Short]
ECMAScript 6 An ArrayBuffer is a block of contiguous, non-resizable memory.
ECMAScript 6 A java.io.InputStream wrapping a JavaScript ArrayBuffer
ECMAScript 6 A java.io.InputStream wrapping a JavaScript ArrayBuffer
This class is extremely similar to a ByteArrayInputStream, but uses ArrayBuffers as the underlying representation. Stream implementations may special case on this stream for better performance and access the underlying buffer directly. (They still need to make sure the internal pointers are properly aligned though).
This stream has several public members (n.b. buffer, offset, length and pos) in order to allow JavaScript aware applications to special case on this kind of stream and access the underlying ArrayBuffer directly for efficiency. In this case it is the client's responsibility to synchronize pos, as if the stream were read normally (if the context in which it is used requires this).
ECMAScript 6 An ArrayBufferView allows accessing the data of an ArrayBuffer
ECMAScript 6 An ArrayBufferView allows accessing the data of an ArrayBuffer
ECMAScript 6 A DataView allows for extraction of particular data types at specific offsets.
ECMAScript 6 A TypedArray of single precision floats
ECMAScript 6 A TypedArray of single precision floats
ECMAScript 6 A TypedArray of double precision floats
ECMAScript 6 A TypedArray of double precision floats
ECMAScript 6 A TypedArray of signed 16-bit integers
ECMAScript 6 A TypedArray of signed 16-bit integers
ECMAScript 6 A TypedArray of signed 32-bit integers
ECMAScript 6 A TypedArray of signed 32-bit integers
ECMAScript 6 A TypedArray of signed 8-bit integers
ECMAScript 6 A TypedArray of signed 8-bit integers
ECMAScript 6
Adds toArray
conversion to a Int8Array
ECMAScript 6
Adds toArray
conversion to a Int8Array
ECMAScript 6
Adds toArray
conversion to a Uint16Array
ECMAScript 6
Adds toArray
conversion to a Uint16Array
ECMAScript 6
Adds toArray
conversion to a Float64Array
ECMAScript 6
Adds toArray
conversion to a Float64Array
ECMAScript 6
Adds toArray
conversion to a Float32Array
ECMAScript 6
Adds toArray
conversion to a Float32Array
ECMAScript 6
Adds toArray
conversion to a Int32Array
ECMAScript 6
Adds toArray
conversion to a Int32Array
ECMAScript 6
Adds toArray
conversion to a Int16Array
ECMAScript 6
Adds toArray
conversion to a Int16Array
ECMAScript 6 A TypedArray allows to view an ArrayBuffer as an array of values of a particular numeric type.
ECMAScript 6 A TypedArray allows to view an ArrayBuffer as an array of values of a particular numeric type.
Additional operations on a Buffer with interoperability with JavaScript Typed Arrays.
ECMAScript 6 Static information that exists for any concrete TypedArray
ECMAScript 6 A TypedArray of unsigned 16-bit integers
ECMAScript 6 A TypedArray of unsigned 16-bit integers
ECMAScript 6 A TypedArray of unsigned 32-bit integers
ECMAScript 6 A TypedArray of unsigned 32-bit integers
ECMAScript 6 A TypedArray of unsigned 8-bit integers
ECMAScript 6 A TypedArray of unsigned 8-bit integers
ECMAScript 6 A TypedArray of unsigned 8-bit integers whose values are clamped to their max/min rather than wrapped around if they overflow.
ECMAScript 6 A TypedArray of unsigned 8-bit integers whose values are clamped to their max/min rather than wrapped around if they overflow.
Extensions for DataView.
ECMAScript 6 Float32Array companion
ECMAScript 6 Float32Array companion
ECMAScript 6 Float64Array companion
ECMAScript 6 Float64Array companion
ECMAScript 6 Int16Array companion
ECMAScript 6 Int16Array companion
ECMAScript 6 Int32Array companion
ECMAScript 6 Int32Array companion
ECMAScript 6 Int8Array companion
Factory methods to create direct buffers from Typed Arrays.
Factory methods to create direct buffers from Typed Arrays.
All buffers created by the methods of this object are direct buffers with the native byte order of the platform.
Extensions to Buffers for interoperability with JavaScript Typed Arrays.
ECMAScript 6 Uint16Array companion
ECMAScript 6 Uint16Array companion
ECMAScript 6 Uint32Array companion
ECMAScript 6 Uint32Array companion
ECMAScript 6 Uint8Array companion
ECMAScript 6 Uint8Array companion
ECMAScript 6 Uint8ClampedArray companion
ECMAScript 6 Uint8ClampedArray companion
ECMAScript 6 The typdearray package provides facade types for JavaScript ArrayBuffer, TypeArrays and DataView. Further, it provides conversions between primitive Scala arrays and TypedArrays