Lines Matching refs:Uint32Array

2555 …buffer)实现。目前支持包括Int8Array、Uint8Array、Int16Array、Uint16Array、Int32Array、Uint32Array、Uint8ClampedArr…
2599 let uint32Array: collections.Uint32Array = new collections.Uint32Array();
2637 let uint32Array: collections.Uint32Array = new collections.Uint32Array(12);
2670 let array: collections.Uint32Array = new collections.Uint32Array(arrayLike);
2676 let array: collections.Uint32Array = new collections.Uint32Array(arrayBuffer);
2684 let uint32Array: collections.Uint32Array = new collections.Uint32Array(uint8Array);
2685 // Uint32Array [1, 3, 5]
2719 let uint32Array: collections.Uint32Array = new collections.Uint32Array(int32Array.buffer, 4, 5);
2747 let array: collections.Uint32Array = collections.Uint32Array.from(arrayLike);
2748 // Uint32Array [1, 3, 5]
2776 let array: collections.Uint32Array = collections.Uint32Array.from<number>(
2778 // Uint32Array [0, 1, 2, 3, 4]
2783 let array: collections.Uint32Array = collections.Uint32Array.from<string>(
2785 // Uint32Array [1, 3, 5]
2790 let array: collections.Uint32Array = collections.Uint32Array.from<string>(
2792 // Uint32Array [1, 2, 3, 4, 5]
2821 let array: collections.Uint32Array = collections.Uint32Array.from(set);
2822 // Uint32Array [1, 2, 3]
2828 let array: collections.Uint32Array = collections.Uint32Array.from(
2830 // Uint32Array [1, 3, 5]
2868 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5, 6, 7, 8]);
2869 let copied: collections.Uint32Array = array.copyWithin(3, 1, 3);
2870 // Uint32Array [1, 2, 3, 2, 3, 6, 7, 8]
2907 let uint32Array: collections.Uint32Array = new collections.Uint32Array(arrayLike);
2948 let uint32Array: collections.Uint32Array = new collections.Uint32Array(arrayLike);
2991 new collections.Uint32Array(arrayLike).fill(4); // Uint32Array [4, 4, 4]
2992 new collections.Uint32Array(arrayLike).fill(4, 1); // Uint32Array [1, 4, 4]
2993 new collections.Uint32Array(arrayLike).fill(4, 1, 2); // Uint32Array [1, 4, 3]
3029 let array: collections.Uint32Array = collections.Uint32Array.from([0, 1, 2, 3, 4]);
3030 let filtered: collections.Uint32Array = array.filter((element: number) => element % 2 == 0);
3031 // Uint32Array [0, 2, 4]
3067 let array: collections.Uint32Array = collections.Uint32Array.from([0, 1, 2, 3, 4]);
3105 const array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3137 let uint32Array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3]);
3138 uint32Array.forEach((value: number, index: number, array: collections.Uint32Array) => {
3177 let array: collections.Uint32Array = collections.Uint32Array.from([3, 5, 9]);
3217 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3254 let array: collections.Uint32Array = collections.Uint32Array.from([25, 36, 49]);
3255 const mapped: collections.Uint32Array = array.map(Math.sqrt); // Uint32Array [5, 6 ,7]
3290 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3329 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3368 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3400 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3401 let reversed: collections.Uint32Array = array.reverse(); // Uint32Array [5, 4, 3, 2, 1]
3470 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3471 array.slice(); // Uint32Array [1, 2, 3, 4, 5]
3472 array.slice(1, 3); // Uint32Array [2, 3]
3473 array.slice(-2); // Uint32Array [4, 5]
3509 let array: collections.Uint32Array = collections.Uint32Array.from([1, 3, 5, 4, 2]);
3510 array.sort(); // Uint32Array [1, 2, 3, 4, 5]
3511 array.sort((a: number, b: number) => a - b); // Uint32Array [1, 2, 3, 4, 5]
3512 array.sort((a: number, b: number) => b - a); // Uint32Array [5, 4, 3, 2, 1]
3549 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3550 let subArray: collections.Uint32Array = array.subarray(); // Uint32Array [1, 2, 3, 4, 5]
3551 subArray.set([10, 20, 30]); // Uint32Array [10, 20, 30, 4, 5]
3586 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3626 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3]);
3659 let array: collections.Uint32Array = collections.Uint32Array.from([11, 22, 33]);
3693 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3727 let array: collections.Uint32Array = collections.Uint32Array.from([1, 2, 3, 4, 5]);
3776 返回TypedArray指定索引位置的元素,适用于Int8Array,Int16Array,Int32Array,Uint8Array,Uint16Array,Uint32Array,Float32…
3805 let uint32Array = collections.Uint32Array.from([1, 2, 4]);