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: .editorconfig
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ indent_style = tab
121
121
[*.{md,md.txt}]
122
122
indent_style = space
123
123
indent_size = 4
124
-
trim_trailing_whitespace = false
124
+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -279,6 +279,15 @@ console.log( ndarray2array( y ) );
279
279
280
280
<sectionclass="related">
281
281
282
+
* * *
283
+
284
+
## See Also
285
+
286
+
- <spanclass="package-name">[`@stdlib/ndarray-filter`][@stdlib/ndarray/filter]</span><spanclass="delimiter">: </span><spanclass="description">return a shallow copy of an ndarray containing only those elements which pass a test implemented by a predicate function.</span>
287
+
- <spanclass="package-name">[`@stdlib/ndarray-map`][@stdlib/ndarray/map]</span><spanclass="delimiter">: </span><spanclass="description">apply a callback to elements in an input ndarray and assign results to elements in a new output ndarray.</span>
288
+
- <spanclass="package-name">[`@stdlib/ndarray-reject`][@stdlib/ndarray/reject]</span><spanclass="delimiter">: </span><spanclass="description">return a shallow copy of an ndarray containing only those elements which fail a test implemented by a predicate function.</span>
289
+
- <spanclass="package-name">[`@stdlib/ndarray-slice`][@stdlib/ndarray/slice]</span><spanclass="delimiter">: </span><spanclass="description">return a read-only view of an input ndarray.</span>
0 commit comments