Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Uint16ArrayConstructor

Index

Constructors

Properties

Methods

Constructors

constructor

  • new Uint16ArrayConstructor(length: number): Uint16Array
  • new Uint16ArrayConstructor(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Uint16Array
  • new Uint16ArrayConstructor(buffer: ArrayBufferLike, byteOffset: number, length?: undefined | number): Uint16Array
  • Parameters

    • length: number

    Returns Uint16Array

  • Parameters

    Returns Uint16Array

  • Parameters

    • buffer: ArrayBufferLike
    • byteOffset: number
    • Optional length: undefined | number

    Returns Uint16Array

Properties

BYTES_PER_ELEMENT

BYTES_PER_ELEMENT: number

The size in bytes of each element in the array.

prototype

prototype: Uint16Array

Methods

from

  • from(arrayLike: ArrayLike<number>): Uint16Array
  • from<T>(arrayLike: ArrayLike<T>, mapfn: function, thisArg?: any): Uint16Array
  • Creates an array from an array-like or iterable object.

    Parameters

    • arrayLike: ArrayLike<number>

      An array-like or iterable object to convert to an array.

    Returns Uint16Array

  • Creates an array from an array-like or iterable object.

    Type parameters

    • T

    Parameters

    • arrayLike: ArrayLike<T>

      An array-like or iterable object to convert to an array.

    • mapfn: function

      A mapping function to call on every element of the array.

        • (v: T, k: number): number
        • Parameters

          • v: T
          • k: number

          Returns number

    • Optional thisArg: any

      Value of 'this' used to invoke the mapfn.

    Returns Uint16Array

of

  • of(...items: number[]): Uint16Array
  • Returns a new array from a set of elements.

    Parameters

    • Rest ...items: number[]

      A set of elements to include in the new array object.

    Returns Uint16Array

Generated using TypeDoc