|
@@ -92,7 +92,7 @@ extern class Float32Array implements ArrayBufferView implements ArrayAccess<Floa
|
|
|
Returns a new Array Iterator object that contains the key/value pairs for each index in the array.
|
|
|
See also [Array.prototype.entries()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/entries).
|
|
|
*/
|
|
|
- @:pure function entries():Iterator<Int>;
|
|
|
+ @:pure function entries():js.lib.Iterator<KeyValue<Int, Float>>;
|
|
|
|
|
|
/**
|
|
|
Tests whether all elements in the array pass the test provided by a function.
|
|
@@ -162,7 +162,7 @@ extern class Float32Array implements ArrayBufferView implements ArrayAccess<Floa
|
|
|
Returns a new Array Iterator that contains the keys for each index in the array.
|
|
|
See also [Array.prototype.keys()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/keys).
|
|
|
*/
|
|
|
- @:pure function keys():Iterator<Int>;
|
|
|
+ @:pure function keys():js.lib.Iterator<Int>;
|
|
|
|
|
|
/**
|
|
|
Returns the last (greatest) index of an element within the array equal to the specified value, or -1 if none is found.
|
|
@@ -249,7 +249,7 @@ extern class Float32Array implements ArrayBufferView implements ArrayAccess<Floa
|
|
|
Returns a new Array Iterator object that contains the values for each index in the array.
|
|
|
See also [Array.prototype.values()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/values).
|
|
|
*/
|
|
|
- @:pure function values():Iterator<Float>;
|
|
|
+ @:pure function values():js.lib.Iterator<Float>;
|
|
|
|
|
|
/**
|
|
|
Returns a string representing the array and its elements.
|