Interface BigUint64ArrayConstructor

    interface BigUint64ArrayConstructor {
        new BigUint64ArrayConstructor(
            length?: number,
        ): BigUint64Array<ArrayBuffer>;
        new BigUint64ArrayConstructor(
            array: ArrayLike<bigint> | Iterable<bigint>,
        ): BigUint64Array<ArrayBuffer>;
        new BigUint64ArrayConstructor<
            TArrayBuffer extends ArrayBufferLike = ArrayBuffer,
        >(
            buffer: TArrayBuffer,
            byteOffset?: number,
            length?: number,
        ): BigUint64Array<TArrayBuffer>;
        new BigUint64ArrayConstructor(
            array: ArrayBuffer | ArrayLike<bigint>,
        ): BigUint64Array<ArrayBuffer>;
        BYTES_PER_ELEMENT: number;
        prototype: BigUint64Array;
        from(arrayLike: ArrayLike<bigint>): BigUint64Array;
        from<U>(
            arrayLike: ArrayLike<U>,
            mapfn: (v: U, k: number) => bigint,
            thisArg?: any,
        ): BigUint64Array;
        of(...items: bigint[]): BigUint64Array<ArrayBuffer>;
    }

    Constructors

    Properties

    Methods

    Constructors

    Properties

    BYTES_PER_ELEMENT: number

    The size in bytes of each element in the array.

    prototype: BigUint64Array

    Methods