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
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,9 +132,9 @@ var arr = iterator2arrayviewRight( iter, new Float64Array( 4 ), fcn );
132
132
133
133
The invoked function is provided three arguments:
134
134
135
-
-`value`: iterated value
136
-
-`index`: destination index (zero-based)
137
-
-`n`: iteration index (zero-based)
135
+
-**value**: iterated value.
136
+
-**index**: destination index (zero-based).
137
+
-**n**: iteration index (zero-based).
138
138
139
139
```javascript
140
140
varUint8Array=require( '@stdlib/array-uint8' );
@@ -183,6 +183,7 @@ var count = ctx.count;
183
183
## Notes
184
184
185
185
- Iteration stops when an output array view is full **or** an iterator finishes; whichever comes first.
186
+
- The function supports output array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/complex64`][@stdlib/array/complex64]).
0 commit comments