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
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -202,6 +202,7 @@ The namespace exports the following:
202
202
- <spanclass="signature">[`unary5d( arrays, shape, fcn )`][@stdlib/array/base/unary5d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a five-dimensional nested input array and assign results to elements in a five-dimensional nested output array.</span>
203
203
- <spanclass="signature">[`unarynd( arrays, shape, fcn )`][@stdlib/array/base/unarynd]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in an n-dimensional nested input array and assign results to elements in an n-dimensional nested output array.</span>
204
204
- <spanclass="signature">[`unitspace( start, stop )`][@stdlib/array/base/unitspace]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by 1.</span>
205
+
- <spanclass="signature">[`arrayWith( x, index, value )`][@stdlib/array/base/with]</span><spanclass="delimiter">: </span><spanclass="description">return a new array with the element at the specified index replaced with a provided value.</span>
205
206
- <spanclass="signature">[`zeroTo( n )`][@stdlib/array/base/zero-to]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by 1 starting from zero.</span>
206
207
- <spanclass="signature">[`zeros( len )`][@stdlib/array/base/zeros]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled "generic" array.</span>
207
208
- <spanclass="signature">[`zeros2d( shape )`][@stdlib/array/base/zeros2d]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled two-dimensional nested array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/string/base/README.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,9 @@ The namespace contains the following functions:
77
77
- <spanclass="signature">[`removeLastGraphemeCluster( str, n )`][@stdlib/string/base/remove-last-grapheme-cluster]</span><spanclass="delimiter">: </span><spanclass="description">remove the last `n` grapheme clusters (i.e., user-perceived characters) of a string.</span>
78
78
- <spanclass="signature">[`removeLast( str, n )`][@stdlib/string/base/remove-last]</span><spanclass="delimiter">: </span><spanclass="description">remove the last `n` UTF-16 code units of a string.</span>
79
79
- <spanclass="signature">[`repeat( str, n )`][@stdlib/string/base/repeat]</span><spanclass="delimiter">: </span><spanclass="description">repeat a string a specified number of times and return the concatenated result.</span>
80
+
- <spanclass="signature">[`replaceAfterLast( str, search, replacement, fromIndex )`][@stdlib/string/base/replace-after-last]</span><spanclass="delimiter">: </span><spanclass="description">replace the substring after the last occurrence of a specified search string.</span>
80
81
- <spanclass="signature">[`replaceAfter( str, search, replacement, fromIndex )`][@stdlib/string/base/replace-after]</span><spanclass="delimiter">: </span><spanclass="description">replace the substring after the first occurrence of a specified search string.</span>
82
+
- <spanclass="signature">[`replaceBeforeLast( str, search, replacement, fromIndex )`][@stdlib/string/base/replace-before-last]</span><spanclass="delimiter">: </span><spanclass="description">replace the substring before the last occurrence of a specified search string.</span>
81
83
- <spanclass="signature">[`replaceBefore( str, search, replacement, fromIndex )`][@stdlib/string/base/replace-before]</span><spanclass="delimiter">: </span><spanclass="description">replace the substring before the first occurrence of a specified search string.</span>
82
84
- <spanclass="signature">[`replace( str, search, newval )`][@stdlib/string/base/replace]</span><spanclass="delimiter">: </span><spanclass="description">replace search occurrences with a replacement string.</span>
83
85
- <spanclass="signature">[`reverseCodePoints( str )`][@stdlib/string/base/reverse-code-points]</span><spanclass="delimiter">: </span><spanclass="description">reverse the Unicode code points of a string.</span>
0 commit comments