You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,10 +177,10 @@ v = it.next().value;
177
177
178
178
The invoked function is provided four arguments:
179
179
180
-
-`value`: iterated value
181
-
-`index`: iterated value index
182
-
-`n`: iteration count (zero-based)
183
-
-`src`: source array-like object
180
+
-**value**: iterated value.
181
+
-**index**: iterated value index.
182
+
-**n**: iteration count (zero-based).
183
+
-**src**: source array-like object.
184
184
185
185
```javascript
186
186
functionfcn( v, i ) {
@@ -244,6 +244,7 @@ var count = ctx.count;
244
244
- If provided a generic `array`, the returned iterator does **not** ignore holes. To achieve greater performance for sparse arrays, use a custom iterator.
245
245
- A returned iterator does **not** copy a provided array-like `object`. To ensure iterable reproducibility, copy a provided array-like `object`**before** creating an iterator. Otherwise, any changes to the contents of an array-like `object` will be reflected in the returned iterator.
246
246
- In environments supporting `Symbol.iterator`, the function **explicitly** does **not** invoke an array's `@@iterator` method, regardless of whether this method is defined. To convert an array to an implementation defined iterator, invoke this method directly.
247
+
- The returned iterator supports array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/complex64`][@stdlib/array/complex64]).
0 commit comments