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
- <spanclass="signature">[`byteOrders()`][@stdlib/array/byte-orders]</span><spanclass="delimiter">: </span><spanclass="description">list of byte orders.</span>
194
195
- <spanclass="signature">[`cartesianPower( x, n )`][@stdlib/array/cartesian-power]</span><spanclass="delimiter">: </span><spanclass="description">return the Cartesian power.</span>
195
196
- <spanclass="signature">[`cartesianProduct( x1, x2 )`][@stdlib/array/cartesian-product]</span><spanclass="delimiter">: </span><spanclass="description">return the Cartesian product.</span>
196
197
- <spanclass="signature">[`cartesianSquare( x )`][@stdlib/array/cartesian-square]</span><spanclass="delimiter">: </span><spanclass="description">return the Cartesian square.</span>
@@ -205,10 +206,16 @@ Lastly, the namespace contains various other functions for dealing with arrays,
205
206
- <spanclass="signature">[`empty( length[, dtype] )`][@stdlib/array/empty]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized array having a specified length.</span>
206
207
- <spanclass="signature">[`filledBy()`][@stdlib/array/filled-by]</span><spanclass="delimiter">: </span><spanclass="description">create a filled array according to a provided callback function.</span>
207
208
- <spanclass="signature">[`filled()`][@stdlib/array/filled]</span><spanclass="delimiter">: </span><spanclass="description">create a filled array.</span>
209
+
- <spanclass="signature">[`fixedEndianFactory( dtype )`][@stdlib/array/fixed-endian-factory]</span><spanclass="delimiter">: </span><spanclass="description">return a typed array constructor for creating typed arrays having a specified byte order.</span>
210
+
- <spanclass="signature">[`Float32ArrayFE()`][@stdlib/array/fixed-endian-float32]</span><spanclass="delimiter">: </span><spanclass="description">typed array constructor which returns a typed array representing an array of single-precision floating-point numbers in a specified byte order.</span>
211
+
- <spanclass="signature">[`Float64ArrayFE()`][@stdlib/array/fixed-endian-float64]</span><spanclass="delimiter">: </span><spanclass="description">typed array constructor which returns a typed array representing an array of double-precision floating-point numbers in a specified byte order.</span>
208
212
- <spanclass="signature">[`iterator2array( iterator[, out][, mapFcn[, thisArg]] )`][@stdlib/array/from-iterator]</span><spanclass="delimiter">: </span><spanclass="description">create (or fill) an array from an iterator.</span>
209
213
- <spanclass="signature">[`scalar2array( value[, dtype] )`][@stdlib/array/from-scalar]</span><spanclass="delimiter">: </span><spanclass="description">create a single-element array containing a provided scalar value.</span>
210
214
- <spanclass="signature">[`fullLike( x, value[, dtype] )`][@stdlib/array/full-like]</span><spanclass="delimiter">: </span><spanclass="description">create a filled array having the same length and data type as a provided array.</span>
211
215
- <spanclass="signature">[`full( length, value[, dtype] )`][@stdlib/array/full]</span><spanclass="delimiter">: </span><spanclass="description">create a filled array having a specified length.</span>
216
+
- <spanclass="signature">[`littleEndianFactory( dtype )`][@stdlib/array/little-endian-factory]</span><spanclass="delimiter">: </span><spanclass="description">return a typed array constructor for creating typed arrays stored in little-endian byte order.</span>
217
+
- <spanclass="signature">[`Float32ArrayLE()`][@stdlib/array/little-endian-float32]</span><spanclass="delimiter">: </span><spanclass="description">typed array constructor which returns a typed array representing an array of single-precision floating-point numbers in little-endian byte order.</span>
218
+
- <spanclass="signature">[`Float64ArrayLE()`][@stdlib/array/little-endian-float64]</span><spanclass="delimiter">: </span><spanclass="description">typed array constructor which returns a typed array representing an array of double-precision floating-point numbers in little-endian byte order.</span>
212
219
- <spanclass="signature">[`minDataType( value )`][@stdlib/array/min-dtype]</span><spanclass="delimiter">: </span><spanclass="description">determine the minimum array data type of the closest "kind" necessary for storing a provided scalar value.</span>
213
220
- <spanclass="signature">[`mostlySafeCasts( [dtype] )`][@stdlib/array/mostly-safe-casts]</span><spanclass="delimiter">: </span><spanclass="description">return a list of array data types to which a provided array data type can be safely cast and, for floating-point data types, can be downcast.</span>
214
221
- <spanclass="signature">[`mskfilter( x, mask )`][@stdlib/array/mskfilter]</span><spanclass="delimiter">: </span><spanclass="description">apply a mask to a provided input array.</span>
Copy file name to clipboardExpand all lines: base/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
@@ -165,6 +165,7 @@ The namespace exports the following:
165
165
- <spanclass="signature">[`noneByRight( x, predicate[, thisArg] )`][@stdlib/array/base/none-by-right]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array fail a test implemented by a predicate function, iterating from right to left.</span>
166
166
- <spanclass="signature">[`noneBy( x, predicate[, thisArg] )`][@stdlib/array/base/none-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array fail a test implemented by a predicate function.</span>
167
167
- <spanclass="signature">[`none( x )`][@stdlib/array/base/none]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array are falsy.</span>
168
+
- <spanclass="signature">[`nulls( len )`][@stdlib/array/base/nulls]</span><spanclass="delimiter">: </span><spanclass="description">create a "generic" array filled with null values.</span>
168
169
- <spanclass="signature">[`oneTo( n )`][@stdlib/array/base/one-to]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by 1 starting from one.</span>
169
170
- <spanclass="signature">[`ones( len )`][@stdlib/array/base/ones]</span><spanclass="delimiter">: </span><spanclass="description">create a "generic" array filled with ones.</span>
170
171
- <spanclass="signature">[`ones2d( shape )`][@stdlib/array/base/ones2d]</span><spanclass="delimiter">: </span><spanclass="description">create a two-dimensional nested array filled with ones.</span>
Copy file name to clipboardExpand all lines: base/assert/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
@@ -46,10 +46,13 @@ The namespace exports the following:
46
46
<divclass="namespace-toc">
47
47
48
48
- <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>
49
+
- <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>
50
+
- <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>
49
51
- <spanclass="signature">[`hasSameValues( x, y )`][@stdlib/array/base/assert/has-same-values]</span><spanclass="delimiter">: </span><spanclass="description">test if two arrays have the same values.</span>
50
52
- <spanclass="signature">[`isAccessorArray( value )`][@stdlib/array/base/assert/is-accessor-array]</span><spanclass="delimiter">: </span><spanclass="description">test if an array-like object supports the accessor (get/set) protocol.</span>
51
53
- <spanclass="signature">[`isBooleanDataType( value )`][@stdlib/array/base/assert/is-boolean-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported array boolean data type.</span>
52
54
- <spanclass="signature">[`isBooleanArray( value )`][@stdlib/array/base/assert/is-booleanarray]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a `BooleanArray`.</span>
55
+
- <spanclass="signature">[`isByteOrder( value )`][@stdlib/array/base/assert/is-byte-order]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported array byte order.</span>
53
56
- <spanclass="signature">[`isComplexFloatingPointDataType( value )`][@stdlib/array/base/assert/is-complex-floating-point-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported array complex-valued floating-point data type.</span>
54
57
- <spanclass="signature">[`isComplexTypedArray( value )`][@stdlib/array/base/assert/is-complex-typed-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a complex typed array.</span>
55
58
- <spanclass="signature">[`isComplex128Array( value )`][@stdlib/array/base/assert/is-complex128array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a `Complex128Array`.</span>
0 commit comments