interface BigUint64ArrayConstructor {
    new BigUint64ArrayConstructornew (length?): BigUint64Array;
    new BigUint64ArrayConstructornew (array): BigUint64Array;
    new BigUint64ArrayConstructornew (buffer, byteOffset?, length?): BigUint64Array;
    BYTES_PER_ELEMENT: number;
    prototype: BigUint64Array;
    from(arrayLike): BigUint64Array;
    from<U>(arrayLike, mapfn, thisArg?): BigUint64Array;
    of(...items): BigUint64Array;
}

Constructors

Properties

Methods

Constructors

  • Parameters

    • Optional length: number

    Returns BigUint64Array

  • Parameters

    Returns BigUint64Array

  • Parameters

    Returns BigUint64Array

Properties

BYTES_PER_ELEMENT: number

The size in bytes of each element in the array.

prototype: BigUint64Array

Methods

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

    Parameters

    • arrayLike: ArrayLike<bigint>

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

    Returns BigUint64Array

  • Type Parameters

    • U

    Parameters

    • arrayLike: ArrayLike<U>
    • mapfn: ((v, k) => bigint)
        • (v, k): bigint
        • Parameters

          • v: U
          • k: number

          Returns bigint

    • Optional thisArg: any

    Returns BigUint64Array

  • Returns a new array from a set of elements.

    Parameters

    • Rest ...items: bigint[]

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

    Returns BigUint64Array