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/assert/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ The namespace exports the following:
48
48
- <spanclass="signature">[`anyHasOwnProp( arr, property )`][@stdlib/array/base/assert/any-has-own-property]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in a provided array has a specified own property.</span>
49
49
- <spanclass="signature">[`anyHasProp( arr, property )`][@stdlib/array/base/assert/any-has-property]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in a provided array has a specified property, either own or inherited.</span>
50
50
- <spanclass="signature">[`anyIsEntryIn( arr, property )`][@stdlib/array/base/assert/any-is-entry-in]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in a provided array has a specified property key-value pair, either own or inherited.</span>
51
-
- <spanclass="signature">[`anyIsEntry( arr, property )`][@stdlib/array/base/assert/any-is-entry]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in a provided array has a specified own property key-value pair.</span>
51
+
- <spanclass="signature">[`anyIsEntry( arr, property, value )`][@stdlib/array/base/assert/any-is-entry]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in a provided array has a specified own property key-value pair.</span>
52
52
- <spanclass="signature">[`contains( x, value )`][@stdlib/array/base/assert/contains]</span><spanclass="delimiter">: </span><spanclass="description">test if an array contains a provided search value.</span>
53
53
- <spanclass="signature">[`hasEqualValuesIndexed( x, y )`][@stdlib/array/base/assert/has-equal-values-indexed]</span><spanclass="delimiter">: </span><spanclass="description">test if two indexed arrays have equal values.</span>
54
54
- <spanclass="signature">[`hasEqualValues( x, y )`][@stdlib/array/base/assert/has-equal-values]</span><spanclass="delimiter">: </span><spanclass="description">test if two arrays have equal values.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/assert/README.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -249,17 +249,28 @@ The namespace includes utilities for validating other special arrays or buffers:
249
249
- <spanclass="signature">[`isEmptyArrayLikeObject( value )`][@stdlib/assert/is-empty-array-like-object]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an empty array-like object.</span>
250
250
- <spanclass="signature">[`isEmptyArray( value )`][@stdlib/assert/is-empty-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an empty array.</span>
251
251
- <spanclass="signature">[`isEqualArray( v1, v2 )`][@stdlib/assert/is-equal-array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both generic arrays and have equal values.</span>
252
+
- <spanclass="signature">[`isEqualBooleanArray( v1, v2 )`][@stdlib/assert/is-equal-booleanarray]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both BooleanArrays and have equal values.</span>
253
+
- <spanclass="signature">[`isEqualInt16Array( v1, v2 )`][@stdlib/assert/is-equal-int16array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Int16Arrays and have equal values.</span>
254
+
- <spanclass="signature">[`isEqualInt32Array( v1, v2 )`][@stdlib/assert/is-equal-int32array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Int32Arrays and have equal values.</span>
255
+
- <spanclass="signature">[`isEqualInt8Array( v1, v2 )`][@stdlib/assert/is-equal-int8array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Int8Arrays and have equal values.</span>
256
+
- <spanclass="signature">[`isEqualUint16Array( v1, v2 )`][@stdlib/assert/is-equal-uint16array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Uint16Arrays and have equal values.</span>
257
+
- <spanclass="signature">[`isEqualUint32Array( v1, v2 )`][@stdlib/assert/is-equal-uint32array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Uint32Arrays and have equal values.</span>
258
+
- <spanclass="signature">[`isEqualUint8Array( v1, v2 )`][@stdlib/assert/is-equal-uint8array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Uint8Arrays and have equal values.</span>
259
+
- <spanclass="signature">[`isEqualUint8ClampedArray( v1, v2 )`][@stdlib/assert/is-equal-uint8clampedarray]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Uint8ClampedArrays and have equal values.</span>
252
260
- <spanclass="signature">[`isFalsyArray( value )`][@stdlib/assert/is-falsy-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only falsy values.</span>
253
261
- <spanclass="signature">[`isFiniteArray( value )`][@stdlib/assert/is-finite-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only finite numbers.</span>
254
262
- <spanclass="signature">[`isNumericArray( value )`][@stdlib/assert/is-numeric-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a numeric array.</span>
255
263
- <spanclass="signature">[`isPlainObjectArray( value )`][@stdlib/assert/is-plain-object-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only plain objects.</span>
256
264
- <spanclass="signature">[`isProbabilityArray( value )`][@stdlib/assert/is-probability-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only probabilities.</span>
265
+
- <spanclass="signature">[`isSameAccessorArray( v1, v2 )`][@stdlib/assert/is-same-accessor-array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both accessor arrays and have the same values.</span>
266
+
- <spanclass="signature">[`isSameArrayLikeObject( v1, v2 )`][@stdlib/assert/is-same-array-like-object]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both array-like objects and have the same values.</span>
257
267
- <spanclass="signature">[`isSameArrayLike( v1, v2 )`][@stdlib/assert/is-same-array-like]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both array-like and have the same values.</span>
258
268
- <spanclass="signature">[`isSameArray( v1, v2 )`][@stdlib/assert/is-same-array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both generic arrays and have the same values.</span>
259
269
- <spanclass="signature">[`isSameComplex128Array( v1, v2 )`][@stdlib/assert/is-same-complex128array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Complex128Arrays and have the same values.</span>
260
270
- <spanclass="signature">[`isSameComplex64Array( v1, v2 )`][@stdlib/assert/is-same-complex64array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Complex64Arrays and have the same values.</span>
261
271
- <spanclass="signature">[`isSameFloat32Array( v1, v2 )`][@stdlib/assert/is-same-float32array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Float32Arrays and have the same values.</span>
262
272
- <spanclass="signature">[`isSameFloat64Array( v1, v2 )`][@stdlib/assert/is-same-float64array]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both Float64Arrays and have the same values.</span>
273
+
- <spanclass="signature">[`isSameTypedArrayLike( v1, v2 )`][@stdlib/assert/is-same-typed-array-like]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are both typed-array-like objects and have the same values.</span>
263
274
- <spanclass="signature">[`isSharedArrayBuffer( value )`][@stdlib/assert/is-sharedarraybuffer]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a SharedArrayBuffer.</span>
264
275
- <spanclass="signature">[`isTruthyArray( value )`][@stdlib/assert/is-truthy-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only truthy values.</span>
265
276
- <spanclass="signature">[`isTypedArrayLength( value )`][@stdlib/assert/is-typed-array-length]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a valid typed array length.</span>
@@ -414,6 +425,7 @@ The remaining namespace utilities are as follows:
414
425
- <spanclass="signature">[`isEmptyString( value )`][@stdlib/assert/is-empty-string]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an empty string.</span>
415
426
- <spanclass="signature">[`isEnumerablePropertyIn( value, property )`][@stdlib/assert/is-enumerable-property-in]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own or inherited property is enumerable.</span>
416
427
- <spanclass="signature">[`isEnumerableProperty( value, property )`][@stdlib/assert/is-enumerable-property]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own property is enumerable.</span>
428
+
- <spanclass="signature">[`isEqualDateObject( d1, d2 )`][@stdlib/assert/is-equal-date-object]</span><spanclass="delimiter">: </span><spanclass="description">test if two values are [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) objects corresponding to the same date and time.</span>
417
429
- <spanclass="signature">[`isEven( value )`][@stdlib/assert/is-even]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an even number.</span>
418
430
- <spanclass="signature">[`isFalsy( value )`][@stdlib/assert/is-falsy]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is falsy.</span>
419
431
- <spanclass="signature">[`isFinite( value )`][@stdlib/assert/is-finite]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a finite number.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,7 @@ In addition, the namespace contains the following multidimensional array utility
82
82
- <spanclass="signature">[`dtypes( [kind] )`][@stdlib/ndarray/dtypes]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray data types.</span>
83
83
- <spanclass="signature">[`emptyLike( x[, options] )`][@stdlib/ndarray/empty-like]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized ndarray having the same shape and data type as a provided ndarray.</span>
84
84
- <spanclass="signature">[`empty( shape[, options] )`][@stdlib/ndarray/empty]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized ndarray having a specified shape and data type.</span>
85
+
- <spanclass="signature">[`every( x[, options] )`][@stdlib/ndarray/every]</span><spanclass="delimiter">: </span><spanclass="description">test whether every element along one or more `ndarray` dimensions is truthy.</span>
- <spanclass="signature">[`fillBy( x, fcn[, thisArg] )`][@stdlib/ndarray/fill-by]</span><spanclass="delimiter">: </span><spanclass="description">fill an input ndarray according to a callback function.</span>
87
88
- <spanclass="signature">[`fill( x, value )`][@stdlib/ndarray/fill]</span><spanclass="delimiter">: </span><spanclass="description">fill an input `ndarray` with a specified value.</span>
@@ -91,6 +92,7 @@ In addition, the namespace contains the following multidimensional array utility
91
92
- <spanclass="signature">[`flags( x )`][@stdlib/ndarray/flags]</span><spanclass="delimiter">: </span><spanclass="description">return the flags of a provided ndarray.</span>
92
93
- <spanclass="signature">[`forEach( x, fcn[, thisArg] )`][@stdlib/ndarray/for-each]</span><spanclass="delimiter">: </span><spanclass="description">invoke a callback function once for each ndarray element.</span>
93
94
- <spanclass="signature">[`scalar2ndarray( value[, options] )`][@stdlib/ndarray/from-scalar]</span><spanclass="delimiter">: </span><spanclass="description">convert a scalar value to a zero-dimensional ndarray.</span>
95
+
- <spanclass="signature">[`includes( x, searchElement[, options] )`][@stdlib/ndarray/includes]</span><spanclass="delimiter">: </span><spanclass="description">test whether an `ndarray` contains a specified value along one or more dimensions.</span>
94
96
- <spanclass="signature">[`ind2sub( shape, idx[, options] )`][@stdlib/ndarray/ind2sub]</span><spanclass="delimiter">: </span><spanclass="description">convert a linear index to an array of subscripts.</span>
95
97
- <spanclass="signature">[`indexModes()`][@stdlib/ndarray/index-modes]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray index modes.</span>
96
98
- <spanclass="signature">[`ndindex( x[, options] )`][@stdlib/ndarray/index]</span><spanclass="delimiter">: </span><spanclass="description">ndarray index constructor.</span>
@@ -127,6 +129,7 @@ In addition, the namespace contains the following multidimensional array utility
127
129
- <spanclass="signature">[`ndarray2array( x )`][@stdlib/ndarray/to-array]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray to a generic array.</span>
128
130
- <spanclass="signature">[`ndarray2fancy( x[, options] )`][@stdlib/ndarray/to-fancy]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray to an object supporting fancy indexing.</span>
129
131
- <spanclass="signature">[`ndarray2json( x )`][@stdlib/ndarray/to-json]</span><spanclass="delimiter">: </span><spanclass="description">serialize an ndarray as a JSON object.</span>
132
+
- <spanclass="signature">[`vector`][@stdlib/ndarray/vector]</span><spanclass="delimiter">: </span><spanclass="description">vector constructors and associated utilities.</span>
130
133
- <spanclass="signature">[`zerosLike( x[, options] )`][@stdlib/ndarray/zeros-like]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled ndarray having the same shape and data type as a provided ndarray.</span>
131
134
- <spanclass="signature">[`zeros( shape[, options] )`][@stdlib/ndarray/zeros]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled ndarray having a specified shape and data type.</span>
0 commit comments