Constructs a new typed array with no elements.
A new typed array instance.
Constructs a new typed array with the specified length.
The length of the new typed array.
A new typed array instance.
Constructs a new typed array from an array-like or iterable object.
An array-like or iterable object to initialize the typed array.
A new typed array instance.
Constructs a new typed array from an object.
An object to initialize the typed array.
A new typed array instance.
Constructs a new typed array from an ArrayBuffer.
The ArrayBuffer to use as the storage for the typed array.
A new typed array instance.
Constructs a new typed array from an ArrayBuffer with a specified byte offset.
The ArrayBuffer to use as the storage for the typed array.
The offset, in bytes, to the first element in the array.
A new typed array instance.
Constructs a new typed array from an ArrayBuffer with a specified byte offset and length.
The ArrayBuffer to use as the storage for the typed array.
The offset, in bytes, to the first element in the array.
The number of elements in the array.
A new typed array instance.
The number of bytes per element in the typed array.
Represents a base constructor type for typed arrays. This type defines the various constructor signatures that typed arrays can have.