CauslTypedArrayCtor: {
    from(source: ArrayLike<number>): T;
    new (length: number): T;
}

Constructor handle for one of CauslTypedArray. Used by the fallback path's from(...) copy to materialise a view of the requested element shape when the node's committed value is not already an instance of T.

Type Parameters

Type declaration

    • new (length: number): T
    • Parameters

      • length: number

      Returns T

  • from:function
    • Parameters

      • source: ArrayLike<number>

      Returns T