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: lib/node_modules/@stdlib/ndarray/iter/rows/README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,10 +103,10 @@ arr = ndarray2array( v );
103
103
// returns [ 10, 2 ]
104
104
```
105
105
106
-
The returned iterator protocol-compliant object has the following properties:
106
+
The returned [iterator][mdn-iterator-protocol] protocol-compliant object has the following properties:
107
107
108
-
-**next**: function which returns an iterator protocol-compliant object containing the next iterated value (if one exists) assigned to a `value` property and a `done` property having a `boolean` value indicating whether the iterator is finished.
109
-
-**return**: function which closes an iterator and returns a single (optional) argument in an iterator protocol-compliant object.
108
+
-**next**: function which returns an [iterator][mdn-iterator-protocol] protocol-compliant object containing the next iterated value (if one exists) assigned to a `value` property and a `done` property having a `boolean` value indicating whether the [iterator][mdn-iterator-protocol] is finished.
109
+
-**return**: function which closes an [iterator][mdn-iterator-protocol] and returns a single (optional) argument in an [iterator][mdn-iterator-protocol] protocol-compliant object.
0 commit comments