File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/array Expand file tree Collapse file tree Original file line number Diff line number Diff line change 239239 Returns
240240 -------
241241 out: Float32Array
242- Modified typed array.
242+ Modified array.
243243
244244 Examples
245245 --------
264264 > var arr = new {{alias}}( [ 1.0, -1.0 ] );
265265 > it = arr.entries();
266266 > it.next().value
267- [ 1. 0, 0 ]
267+ [ 0, 1. 0 ]
268268 > it.next().value
269- [ -1.0, 1 ]
269+ [ 1, -1.0 ]
270270 > it.next().done
271271 true
272272
Original file line number Diff line number Diff line change 239239 Returns
240240 -------
241241 out: Float64Array
242- Modified typed array.
242+ Modified array.
243243
244244 Examples
245245 --------
264264 > var arr = new {{alias}}( [ 1.0, -1.0 ] );
265265 > it = arr.entries();
266266 > it.next().value
267- [ 1. 0, 0 ]
267+ [ 0, 1. 0 ]
268268 > it.next().value
269- [ -1.0, 1 ]
269+ [ 1, -1.0 ]
270270 > it.next().done
271271 true
272272
Original file line number Diff line number Diff line change 239239 Returns
240240 -------
241241 out: Int16Array
242- Modified typed array.
242+ Modified array.
243243
244244 Examples
245245 --------
264264 > var arr = new {{alias}}( [ 1, 2 ] );
265265 > it = arr.entries();
266266 > it.next().value
267- [ 1, 0 ]
267+ [ 0, 1 ]
268268 > it.next().value
269- [ 2, 1 ]
269+ [ 1, 2 ]
270270 > it.next().done
271271 true
272272
You can’t perform that action at this time.
0 commit comments