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
+9
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,7 @@ The namespace exports the following:
95
95
- <spanclass="signature">[`countTruthy( x )`][@stdlib/array/base/count-truthy]</span><spanclass="delimiter">: </span><spanclass="description">count the number of truthy elements in an array.</span>
96
96
- <spanclass="signature">[`cuany( x )`][@stdlib/array/base/cuany]</span><spanclass="delimiter">: </span><spanclass="description">cumulatively test whether at least one element in a provided array is truthy.</span>
97
97
- <spanclass="signature">[`cuevery( x )`][@stdlib/array/base/cuevery]</span><spanclass="delimiter">: </span><spanclass="description">cumulatively test whether every element in a provided array is truthy.</span>
98
+
- <spanclass="signature">[`cunone( x )`][@stdlib/array/base/cunone]</span><spanclass="delimiter">: </span><spanclass="description">cumulatively test whether every element in a provided array is falsy.</span>
- <spanclass="signature">[`everyByRight( x, predicate[, thisArg] )`][@stdlib/array/base/every-by-right]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array pass a test implemented by a predicate function, iterating from right to left.</span>
100
101
- <spanclass="signature">[`everyBy( x, predicate[, thisArg] )`][@stdlib/array/base/every-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array pass a test implemented by a predicate function.</span>
@@ -182,6 +183,7 @@ The namespace exports the following:
182
183
- <spanclass="signature">[`quinary4d( arrays, shape, fcn )`][@stdlib/array/base/quinary4d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quinary callback to elements in five four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.</span>
183
184
- <spanclass="signature">[`quinary5d( arrays, shape, fcn )`][@stdlib/array/base/quinary5d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quinary callback to elements in five five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.</span>
184
185
- <spanclass="signature">[`reject( x, predicate[, thisArg] )`][@stdlib/array/base/reject]</span><spanclass="delimiter">: </span><spanclass="description">return a shallow copy of an array containing only those elements which fail a test implemented by a predicate function.</span>
186
+
- <spanclass="signature">[`removeAt( x, index )`][@stdlib/array/base/remove-at]</span><spanclass="delimiter">: </span><spanclass="description">remove an element from an array.</span>
185
187
- <spanclass="signature">[`resolveGetter( x )`][@stdlib/array/base/resolve-getter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for retrieving an element from an array-like object.</span>
186
188
- <spanclass="signature">[`resolveSetter( x )`][@stdlib/array/base/resolve-setter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for setting an element in an array-like object.</span>
187
189
- <spanclass="signature">[`reverse( x )`][@stdlib/array/base/reverse]</span><spanclass="delimiter">: </span><spanclass="description">reverse an array in-place.</span>
@@ -211,6 +213,7 @@ The namespace exports the following:
211
213
- <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>
212
214
- <spanclass="signature">[`where( condition, x, y )`][@stdlib/array/base/where]</span><spanclass="delimiter">: </span><spanclass="description">take elements from either one of two arrays depending on a condition.</span>
213
215
- <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>
216
+
- <spanclass="signature">[`without( x, index )`][@stdlib/array/base/without]</span><spanclass="delimiter">: </span><spanclass="description">return a new array containing every element from an input array, except for the element at a specified index.</span>
214
217
- <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>
215
218
- <spanclass="signature">[`zeros( len )`][@stdlib/array/base/zeros]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled "generic" array.</span>
216
219
- <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/blas/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ The namespace contains the following:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`base`][@stdlib/blas/base]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) basic linear algebra subprograms (BLAS).</span>
49
-
- <spanclass="signature">[`ddot( x, y )`][@stdlib/blas/ddot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two double-precision floating-point vectors.</span>
49
+
- <spanclass="signature">[`ddot( x, y[, dim] )`][@stdlib/blas/ddot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two double-precision floating-point vectors.</span>
50
50
- <spanclass="signature">[`dswap( x, y )`][@stdlib/blas/dswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two double-precision floating-point vectors.</span>
51
51
- <spanclass="signature">[`ext`][@stdlib/blas/ext]</span><spanclass="delimiter">: </span><spanclass="description">extended basic linear algebra subprograms (BLAS).</span>
52
52
- <spanclass="signature">[`gdot( x, y )`][@stdlib/blas/gdot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two vectors.</span>
0 commit comments