Float32Array
t
type t = Core__TypedArray.t<float>
The Float32Array
typed array represents an array of 32-bit floating point numbers in platform byte order. See Float32Array on MDN
fromArray
let fromArray: array<float> => t
fromArray
creates a Float32Array
from an array of values. See TypedArray constructor on MDN
fromBuffer
let fromBuffer: Core__ArrayBuffer.t => t
fromBuffer
creates a Float32Array
from an ArrayBuffer.t
. See TypedArray constructor on MDN
Note: This is a potentially unsafe operation. Ensure the buffer is large enough and only accessed within its bounds.
fromBufferToEnd
let fromBufferToEnd: (Core__ArrayBuffer.t, ~byteOffset: int) => t
fromBufferToEnd
creates a Float32Array
from an ArrayBuffer.t
, starting at a particular offset and continuing through to the end. See TypedArray constructor on MDN
Note: This is a potentially unsafe operation. Ensure the buffer is large enough and only accessed within its bounds.
fromBufferWithRange
let fromBufferWithRange: (Core__ArrayBuffer.t, ~byteOffset: int, ~length: int) => t
fromBufferWithRange
creates a Float32Array
from an ArrayBuffer.t
, starting at a particular offset and consuming length
bytes. See TypedArray constructor on MDN
Note: This is a potentially unsafe operation. Ensure the buffer is large enough and only accessed within its bounds.
fromLength
let fromLength: int => t
fromLength
creates a zero-initialized Float32Array
to hold the specified count of numbers; this is not a byte length. See TypedArray constructor on MDN
Note: This is a potentially unsafe operation. Ensure the buffer is large enough and only accessed within its bounds.
fromArrayLikeOrIterable
let fromArrayLikeOrIterable: 'a => t
fromArrayLikeOrIterable
creates a Float32Array
from an array-like or iterable object. See TypedArray.from on MDN
fromArrayLikeOrIterableWithMap
let fromArrayLikeOrIterableWithMap: ('a, ('b, int) => float) => t
fromArrayLikeOrIterableWithMap
creates a Float32Array
from an array-like or iterable object and applies the mapping function to each item. The mapping function expects (value, index). See TypedArray.from on MDN