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: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,7 @@ Lastly, the namespace contains various other functions for dealing with arrays,
224
224
- <spanclass="signature">[`nansLike( x[, dtype] )`][@stdlib/array/nans-like]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with NaNs and having the same length and data type as a provided array.</span>
225
225
- <spanclass="signature">[`nans( length[, dtype] )`][@stdlib/array/nans]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with NaNs and having a specified length.</span>
226
226
- <spanclass="signature">[`nextDataType( [dtype] )`][@stdlib/array/next-dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the next larger array data type of the same kind.</span>
227
+
- <spanclass="signature">[`nulls( length[, dtype] )`][@stdlib/array/nulls]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with nulls and having a specified length.</span>
227
228
- <spanclass="signature">[`oneToLike( x[, dtype] )`][@stdlib/array/one-to-like]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one and having the same length and data type as a provided input array.</span>
228
229
- <spanclass="signature">[`oneTo( n[, dtype] )`][@stdlib/array/one-to]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one.</span>
229
230
- <spanclass="signature">[`onesLike( x[, dtype] )`][@stdlib/array/ones-like]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with ones and having the same length and data type as a provided array.</span>
Copy file name to clipboardExpand all lines: base/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,7 @@ The namespace exports the following:
124
124
- <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>
125
125
- <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>
126
126
- <spanclass="signature">[`every( x )`][@stdlib/array/base/every]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array are truthy.</span>
127
+
- <spanclass="signature">[`falses( len )`][@stdlib/array/base/falses]</span><spanclass="delimiter">: </span><spanclass="description">create a "generic" array filled with `false` values.</span>
127
128
- <spanclass="signature">[`fancySliceAssign( x, y, s, strict )`][@stdlib/array/base/fancy-slice-assign]</span><spanclass="delimiter">: </span><spanclass="description">assign element values from a broadcasted input array to corresponding elements in an output array.</span>
128
129
- <spanclass="signature">[`fancySlice( x, s, strict )`][@stdlib/array/base/fancy-slice]</span><spanclass="delimiter">: </span><spanclass="description">return a shallow copy of a portion of an array.</span>
129
130
- <spanclass="signature">[`fillBy( x, start, end, fcn[, thisArg] )`][@stdlib/array/base/fill-by]</span><spanclass="delimiter">: </span><spanclass="description">fill all elements within a portion of an array according to a callback function.</span>
@@ -260,6 +261,7 @@ The namespace exports the following:
260
261
- <spanclass="signature">[`toDeduped( x, limit, equalNaNs )`][@stdlib/array/base/to-deduped]</span><spanclass="delimiter">: </span><spanclass="description">copy elements to a new "generic" array after removing consecutive duplicated values.</span>
261
262
- <spanclass="signature">[`toInsertedAt( x, index, value )`][@stdlib/array/base/to-inserted-at]</span><spanclass="delimiter">: </span><spanclass="description">return a new array containing every element from an input array and with a provided value inserted at a specified index.</span>
262
263
- <spanclass="signature">[`toReversed( x )`][@stdlib/array/base/to-reversed]</span><spanclass="delimiter">: </span><spanclass="description">return a new array with elements in reverse order.</span>
264
+
- <spanclass="signature">[`trues( len )`][@stdlib/array/base/trues]</span><spanclass="delimiter">: </span><spanclass="description">create a "generic" array filled with `true` values.</span>
263
265
- <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>
264
266
- <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>
265
267
- <spanclass="signature">[`unary3dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary3d-by]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary function to each element retrieved from a three-dimensional nested input array according to a callback function and assign results to elements in a three-dimensional nested output array.</span>
0 commit comments