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/array/base/README.md
+6
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ The namespace exports the following:
61
61
- <spanclass="signature">[`bbinary3d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-binary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two broadcasted nested input arrays and assign results to elements in a three-dimensional nested output array.</span>
62
62
- <spanclass="signature">[`bbinary4d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-binary4d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two broadcasted nested input arrays and assign results to elements in a four-dimensional nested output array.</span>
63
63
- <spanclass="signature">[`bbinary5d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-binary5d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two broadcasted nested input arrays and assign results to elements in a five-dimensional nested output array.</span>
64
+
- <spanclass="signature">[`bternary2d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-ternary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a ternary callback to elements in three broadcasted nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
64
65
- <spanclass="signature">[`bunary2d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-unary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a broadcasted nested input array and assign results to elements in a two-dimensional nested output array.</span>
65
66
- <spanclass="signature">[`bunary3d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-unary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a broadcasted nested input array and assign results to elements in a three-dimensional nested output array.</span>
66
67
- <spanclass="signature">[`bunary4d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-unary4d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a broadcasted nested input array and assign results to elements in a four-dimensional nested output array.</span>
@@ -110,6 +111,7 @@ The namespace exports the following:
110
111
- <spanclass="signature">[`onesnd( shape )`][@stdlib/array/base/onesnd]</span><spanclass="delimiter">: </span><spanclass="description">create an n-dimensional nested array filled with ones.</span>
111
112
- <spanclass="signature">[`setter( dtype )`][@stdlib/array/base/setter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for setting an element in an indexed array-like object.</span>
112
113
- <spanclass="signature">[`take( x, indices )`][@stdlib/array/base/take]</span><spanclass="delimiter">: </span><spanclass="description">take elements from an array.</span>
114
+
- <spanclass="signature">[`ternary2d( arrays, shape, fcn )`][@stdlib/array/base/ternary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a ternary callback to elements in three two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
113
115
- <spanclass="signature">[`toAccessorArray( arr )`][@stdlib/array/base/to-accessor-array]</span><spanclass="delimiter">: </span><spanclass="description">convert an array-like object to a minimal array-like object supporting the accessor protocol.</span>
114
116
- <spanclass="signature">[`unary2dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary2d-by]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary function to each element retrieved from a two-dimensional nested input array according to a callback function and assign results to elements in a two-dimensional nested output array.</span>
115
117
- <spanclass="signature">[`unary2d( arrays, shape, fcn )`][@stdlib/array/base/unary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a two-dimensional nested input array and assign results to elements in a two-dimensional nested output array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/string/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ The namespace exposes the following string manipulation functions:
78
78
- <spanclass="signature">[`repeat( str, n )`][@stdlib/string/repeat]</span><spanclass="delimiter">: </span><spanclass="description">repeat a string a specified number of times and return the concatenated result.</span>
79
79
- <spanclass="signature">[`replaceBefore( str, search, replacement )`][@stdlib/string/replace-before]</span><spanclass="delimiter">: </span><spanclass="description">replace the substring before the first occurrence of a specified search string.</span>
80
80
- <spanclass="signature">[`replace( str, search, newval )`][@stdlib/string/replace]</span><spanclass="delimiter">: </span><spanclass="description">replace search occurrences with a replacement string.</span>
81
-
- <spanclass="signature">[`reverseString( str )`][@stdlib/string/reverse]</span><spanclass="delimiter">: </span><spanclass="description">reverse a string.</span>
81
+
- <spanclass="signature">[`reverseString( str[, options] )`][@stdlib/string/reverse]</span><spanclass="delimiter">: </span><spanclass="description">reverse a string.</span>
82
82
- <spanclass="signature">[`rpad( str, len[, pad] )`][@stdlib/string/right-pad]</span><spanclass="delimiter">: </span><spanclass="description">right pad a string.</span>
83
83
- <spanclass="signature">[`rtrimN( str, n[, chars] )`][@stdlib/string/right-trim-n]</span><spanclass="delimiter">: </span><spanclass="description">trim `n` characters from the end of a string.</span>
84
84
- <spanclass="signature">[`rtrim( str )`][@stdlib/string/right-trim]</span><spanclass="delimiter">: </span><spanclass="description">trim whitespace characters from the end of a string.</span>
0 commit comments