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/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -154,6 +154,7 @@ Lastly, the namespace contains various other functions for dealing with arrays,
154
154
- <spanclass="signature">[`convertArray( arr, dtype )`][@stdlib/array/convert]</span><spanclass="delimiter">: </span><spanclass="description">convert an array to an array of a different data type.</span>
155
155
- <spanclass="signature">[`DataView( buffer[, byteOffset[, byteLength]] )`][@stdlib/array/dataview]</span><spanclass="delimiter">: </span><spanclass="description">constructor which returns a data view representing a provided array buffer.</span>
156
156
- <spanclass="signature">[`arrayDataType( array )`][@stdlib/array/dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the data type of an array.</span>
157
+
- <spanclass="signature">[`filledarrayBy()`][@stdlib/array/filled-by]</span><spanclass="delimiter">: </span><spanclass="description">create a filled array according to a provided callback function.</span>
157
158
- <spanclass="signature">[`filledarray()`][@stdlib/array/filled]</span><spanclass="delimiter">: </span><spanclass="description">create a filled array.</span>
158
159
- <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>
159
160
- <spanclass="signature">[`arrayMinDataType( 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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/assert/README.md
+15
Original file line number
Diff line number
Diff line change
@@ -354,7 +354,9 @@ The remaining namespace utilities are as follows:
354
354
- <spanclass="signature">[`hasProp( value, property )`][@stdlib/assert/has-property]</span><spanclass="delimiter">: </span><spanclass="description">test if an object has a specified property, either own or inherited.</span>
355
355
- <spanclass="signature">[`hasUTF16SurrogatePairAt( string, position )`][@stdlib/assert/has-utf16-surrogate-pair-at]</span><spanclass="delimiter">: </span><spanclass="description">test if a position in a string marks the start of a UTF-16 surrogate pair.</span>
356
356
- <spanclass="signature">[`instanceOf( value, constructor )`][@stdlib/assert/instance-of]</span><spanclass="delimiter">: </span><spanclass="description">test whether a value has in its prototype chain a specified constructor as a prototype property.</span>
357
+
- <spanclass="signature">[`isAbsoluteHttpURI( value )`][@stdlib/assert/is-absolute-http-uri]</span><spanclass="delimiter">: </span><spanclass="description">test whether a value is an absolute HTTP(S) URI.</span>
357
358
- <spanclass="signature">[`isAbsolutePath( value )`][@stdlib/assert/is-absolute-path]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an absolute path.</span>
359
+
- <spanclass="signature">[`isAbsoluteURI( value )`][@stdlib/assert/is-absolute-uri]</span><spanclass="delimiter">: </span><spanclass="description">test whether a value is an absolute URI.</span>
358
360
- <spanclass="signature">[`isAccessorPropertyIn( value, property )`][@stdlib/assert/is-accessor-property-in]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own or inherited property has an accessor descriptor.</span>
359
361
- <spanclass="signature">[`isAccessorProperty( value, property )`][@stdlib/assert/is-accessor-property]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own property has an accessor descriptor.</span>
360
362
- <spanclass="signature">[`isAlphagram( value )`][@stdlib/assert/is-alphagram]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an alphagram.</span>
@@ -398,6 +400,7 @@ The remaining namespace utilities are as follows:
398
400
- <spanclass="signature">[`isIteratorLike( value )`][@stdlib/assert/is-iterator-like]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is `iterator`-like.</span>
399
401
- <spanclass="signature">[`isJSON( value )`][@stdlib/assert/is-json]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a parseable JSON string.</span>
400
402
- <spanclass="signature">[`isLeapYear( [value] )`][@stdlib/assert/is-leap-year]</span><spanclass="delimiter">: </span><spanclass="description">test if a value corresponds to a leap year in the Gregorian calendar.</span>
403
+
- <spanclass="signature">[`isLocalhost( value )`][@stdlib/assert/is-localhost]</span><spanclass="delimiter">: </span><spanclass="description">test whether a value is a localhost hostname.</span>
401
404
- <spanclass="signature">[`isLowercase( value )`][@stdlib/assert/is-lowercase]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a lowercase string.</span>
402
405
- <spanclass="signature">[`isMethodIn( value, property )`][@stdlib/assert/is-method-in]</span><spanclass="delimiter">: </span><spanclass="description">test if an object has a specified method name, either own or inherited.</span>
403
406
- <spanclass="signature">[`isMethod( value, property )`][@stdlib/assert/is-method]</span><spanclass="delimiter">: </span><spanclass="description">test if an object has a specified method name.</span>
@@ -423,6 +426,7 @@ The remaining namespace utilities are as follows:
423
426
- <spanclass="signature">[`isPrimitive( value )`][@stdlib/assert/is-primitive]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a JavaScript primitive.</span>
424
427
- <spanclass="signature">[`isPRNGLike( value )`][@stdlib/assert/is-prng-like]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is PRNG-like.</span>
425
428
- <spanclass="signature">[`isProbability( value )`][@stdlib/assert/is-probability]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a probability.</span>
429
+
- <spanclass="signature">[`isPropertyKey( value )`][@stdlib/assert/is-property-key]</span><spanclass="delimiter">: </span><spanclass="description">test whether a value is a property key.</span>
426
430
- <spanclass="signature">[`isPrototypeOf( obj, prototype )`][@stdlib/assert/is-prototype-of]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's prototype chain contains a provided prototype.</span>
427
431
- <spanclass="signature">[`isReadOnlyPropertyIn( value, property )`][@stdlib/assert/is-read-only-property-in]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own or inherited property is read-only.</span>
428
432
- <spanclass="signature">[`isReadOnlyProperty( value, property )`][@stdlib/assert/is-read-only-property]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own property is read-only.</span>
@@ -432,6 +436,7 @@ The remaining namespace utilities are as follows:
432
436
- <spanclass="signature">[`isReadableProperty( value, property )`][@stdlib/assert/is-readable-property]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own property is readable.</span>
433
437
- <spanclass="signature">[`isRegExpString( value )`][@stdlib/assert/is-regexp-string]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a regular expression string.</span>
434
438
- <spanclass="signature">[`isRelativePath( value )`][@stdlib/assert/is-relative-path]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a relative path.</span>
439
+
- <spanclass="signature">[`isRelativeURI( value )`][@stdlib/assert/is-relative-uri]</span><spanclass="delimiter">: </span><spanclass="description">test whether a value is a relative URI.</span>
435
440
- <spanclass="signature">[`isSameValueZero( a, b )`][@stdlib/assert/is-same-value-zero]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are the same value.</span>
436
441
- <spanclass="signature">[`isSameValue( a, b )`][@stdlib/assert/is-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are the same value.</span>
437
442
- <spanclass="signature">[`isStrictEqual( a, b )`][@stdlib/assert/is-strict-equal]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are strictly equal.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -45,10 +45,10 @@ The namespace contains the following:
45
45
46
46
<divclass="namespace-toc">
47
47
48
-
- <spanclass="signature">[`base`][@stdlib/blas/base]</span><spanclass="delimiter">: </span><spanclass="description">"base" (i.e., lower-level) basic linear algebra subprograms (BLAS).</span>
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
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>
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
-
- <spanclass="signature">[`ext`][@stdlib/blas/ext]</span><spanclass="delimiter">: </span><spanclass="description">standard library extended basic linear algebra subprograms (BLAS).</span>
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>
53
53
- <spanclass="signature">[`gswap( x, y )`][@stdlib/blas/gswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two vectors.</span>
54
54
- <spanclass="signature">[`sdot( x, y )`][@stdlib/blas/sdot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two single-precision floating-point vectors.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ The namespace contains the following:
45
45
46
46
<divclass="namespace-toc">
47
47
48
-
- <spanclass="signature">[`base`][@stdlib/blas/ext/base]</span><spanclass="delimiter">: </span><spanclass="description">standard library extensions to base basic linear algebra subprograms (BLAS).</span>
48
+
- <spanclass="signature">[`base`][@stdlib/blas/ext/base]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) extensions to basic linear algebra subprograms (BLAS).</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -45,11 +45,11 @@ The namespace consists of the following sub-namespaces:
45
45
46
46
<divclass="namespace-toc">
47
47
48
-
- <spanclass="signature">[`base`][@stdlib/math/base]</span><spanclass="delimiter">: </span><spanclass="description">standard library math base implementations.</span>
49
-
- <spanclass="signature">[`iter`][@stdlib/math/iter]</span><spanclass="delimiter">: </span><spanclass="description">standard library math iterators.</span>
50
-
- <spanclass="signature">[`special`][@stdlib/math/special]</span><spanclass="delimiter">: </span><spanclass="description">standard library special math functions.</span>
51
-
- <spanclass="signature">[`strided`][@stdlib/math/strided]</span><spanclass="delimiter">: </span><spanclass="description">standard library strided math functions.</span>
52
-
- <spanclass="signature">[`tools`][@stdlib/math/tools]</span><spanclass="delimiter">: </span><spanclass="description">standard library math tools.</span>
48
+
- <spanclass="signature">[`base`][@stdlib/math/base]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) math functions.</span>
- <spanclass="signature">[`special`][@stdlib/math/special]</span><spanclass="delimiter">: </span><spanclass="description">special math functions.</span>
51
+
- <spanclass="signature">[`strided`][@stdlib/math/strided]</span><spanclass="delimiter">: </span><spanclass="description">strided array math functions.</span>
- <spanclass="signature">[`ops`][@stdlib/math/base/ops]</span><spanclass="delimiter">: </span><spanclass="description">standard library base math operators.</span>
50
-
- <spanclass="signature">[`special`][@stdlib/math/base/special]</span><spanclass="delimiter">: </span><spanclass="description">standard library base special math functions.</span>
- <spanclass="signature">[`assert`][@stdlib/math/base/assert]</span><spanclass="delimiter">: </span><spanclass="description">base math assertion utilities.</span>
49
+
- <spanclass="signature">[`ops`][@stdlib/math/base/ops]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) math operators.</span>
50
+
- <spanclass="signature">[`special`][@stdlib/math/base/special]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) special math functions.</span>
51
+
- <spanclass="signature">[`tools`][@stdlib/math/base/tools]</span><spanclass="delimiter">: </span><spanclass="description">base math tools.</span>
52
+
- <spanclass="signature">[`utils`][@stdlib/math/base/utils]</span><spanclass="delimiter">: </span><spanclass="description">base math utilities.</span>
0 commit comments