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/assert/README.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -416,6 +416,7 @@ The remaining namespace utilities are as follows:
416
416
- <spanclass="signature">[`isLowercase( value )`][@stdlib/assert/is-lowercase]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a lowercase string.</span>
417
417
- <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>
418
418
- <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>
419
+
- <spanclass="signature">[`isMultiSlice( value )`][@stdlib/assert/is-multi-slice]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a `MultiSlice`.</span>
419
420
- <spanclass="signature">[`isNamedTypedTupleLike( value )`][@stdlib/assert/is-named-typed-tuple-like]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is named typed tuple-like.</span>
420
421
- <spanclass="signature">[`isNativeFunction( value )`][@stdlib/assert/is-native-function]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a native function.</span>
421
422
- <spanclass="signature">[`isNegativeZero( value )`][@stdlib/assert/is-negative-zero]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a number equal to negative zero.</span>
@@ -455,6 +456,7 @@ The remaining namespace utilities are as follows:
455
456
- <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>
456
457
- <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>
457
458
- <spanclass="signature">[`isSemVer( value )`][@stdlib/assert/is-semver]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a semantic version string.</span>
459
+
- <spanclass="signature">[`isSlice( value )`][@stdlib/assert/is-slice]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a `Slice`.</span>
458
460
- <spanclass="signature">[`isSnakecase( value )`][@stdlib/assert/is-snakecase]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a string in snake case.</span>
459
461
- <spanclass="signature">[`isStartcase( value )`][@stdlib/assert/is-startcase]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a startcase string.</span>
460
462
- <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/math/base/special/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ var fcns = special;
57
57
- <spanclass="signature">[`log1mexp( x )`][@stdlib/math/base/special/log1mexp]</span><spanclass="delimiter">: </span><spanclass="description">evaluates the natural logarithm of `1-exp(-|x|)`.</span>
58
58
- <spanclass="signature">[`log1p( x )`][@stdlib/math/base/special/log1p]</span><spanclass="delimiter">: </span><spanclass="description">evaluate the natural logarithm of `1+x`.</span>
59
59
- <spanclass="signature">[`log1pexp( x )`][@stdlib/math/base/special/log1pexp]</span><spanclass="delimiter">: </span><spanclass="description">evaluates the natural logarithm of `1+exp(x)`.</span>
60
+
- <spanclass="signature">[`log1pmx( x )`][@stdlib/math/base/special/log1pmx]</span><spanclass="delimiter">: </span><spanclass="description">evaluate `ln(1+x) - x`.</span>
60
61
- <spanclass="signature">[`log2( x )`][@stdlib/math/base/special/log2]</span><spanclass="delimiter">: </span><spanclass="description">evaluate the binary logarithm.</span>
61
62
- <spanclass="signature">[`logaddexp( x, y )`][@stdlib/math/base/special/logaddexp]</span><spanclass="delimiter">: </span><spanclass="description">evaluates the natural logarithm of `exp(x) + exp(y)`.</span>
- <spanclass="signature">[`dispatch( fcns, types, data, nargs, nin, nout )`][@stdlib/ndarray/dispatch]</span><spanclass="delimiter">: </span><spanclass="description">create an ndarray function interface which performs multiple dispatch.</span>
76
-
- <spanclass="signature">[`dispatch( fcns, types, data, nargs, nin, nout )`][@stdlib/ndarray/dispatch]</span><spanclass="delimiter">: </span><spanclass="description">create an ndarray function interface which performs multiple dispatch.</span>
77
76
- <spanclass="signature">[`ndarrayDataTypes( [kind] )`][@stdlib/ndarray/dtypes]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray data types.</span>
78
77
- <spanclass="signature">[`ndemptyLike( 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>
79
78
- <spanclass="signature">[`ndempty( shape[, options] )`][@stdlib/ndarray/empty]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized ndarray having a specified shape and data type.</span>
- <spanclass="signature">[`seq2slice( str, len, strict )`][@stdlib/slice/seq2slice]</span><spanclass="delimiter">: </span><spanclass="description">convert a subsequence string to a `Slice` object.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/slice/base/README.md
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,20 @@ The namespace contains the following:
43
43
44
44
<!-- <toc pattern="*"> -->
45
45
46
+
<divclass="namespace-toc">
47
+
48
+
- <spanclass="signature">[`sliceLength( slice )`][@stdlib/slice/base/length]</span><spanclass="delimiter">: </span><spanclass="description">compute the number of elements in a normalized slice.</span>
49
+
- <spanclass="signature">[`normalizeMultiSlice( slice, shape, strict )`][@stdlib/slice/base/normalize-multi-slice]</span><spanclass="delimiter">: </span><spanclass="description">normalize a `MultiSlice` object.</span>
50
+
- <spanclass="signature">[`normalizeSlice( slice, len, strict )`][@stdlib/slice/base/normalize-slice]</span><spanclass="delimiter">: </span><spanclass="description">normalize a `Slice` object.</span>
51
+
- <spanclass="signature">[`seq2multislice( str, shape, strict )`][@stdlib/slice/base/seq2multislice]</span><spanclass="delimiter">: </span><spanclass="description">convert a multidimensional subsequence string to a `MultiSlice` object.</span>
52
+
- <spanclass="signature">[`seq2slice( str, len, strict )`][@stdlib/slice/base/seq2slice]</span><spanclass="delimiter">: </span><spanclass="description">convert a subsequence string to a `Slice` object.</span>
53
+
- <spanclass="signature">[`sliceShape( slice )`][@stdlib/slice/base/shape]</span><spanclass="delimiter">: </span><spanclass="description">compute the shape of a normalized multi-slice.</span>
54
+
- <spanclass="signature">[`slice2seq( str )`][@stdlib/slice/base/slice2seq]</span><spanclass="delimiter">: </span><spanclass="description">convert a `Slice` object to a subsequence string.</span>
55
+
- <spanclass="signature">[`str2multislice( str )`][@stdlib/slice/base/str2multislice]</span><spanclass="delimiter">: </span><spanclass="description">parse a string-serialized `MultiSlice` object.</span>
56
+
- <spanclass="signature">[`str2slice( str )`][@stdlib/slice/base/str2slice]</span><spanclass="delimiter">: </span><spanclass="description">parse a string-serialized `Slice` object.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/string/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ The namespace exposes the following string manipulation functions:
71
71
- <spanclass="signature">[`percentEncode( str )`][@stdlib/string/percent-encode]</span><spanclass="delimiter">: </span><spanclass="description">percent-encode a UTF-16 encoded string according to RFC 3986.</span>
72
72
- <spanclass="signature">[`prevGraphemeClusterBreak( string[, fromIndex] )`][@stdlib/string/prev-grapheme-cluster-break]</span><spanclass="delimiter">: </span><spanclass="description">return the previous extended grapheme cluster break in a string before a specified position.</span>
73
73
- <spanclass="signature">[`removeFirst( str[, n][, options] )`][@stdlib/string/remove-first]</span><spanclass="delimiter">: </span><spanclass="description">remove the first character(s) of a string.</span>
74
-
- <spanclass="signature">[`removeLast( str[, n] )`][@stdlib/string/remove-last]</span><spanclass="delimiter">: </span><spanclass="description">remove the last character(s) of a string.</span>
74
+
- <spanclass="signature">[`removeLast( str[, n][, options] )`][@stdlib/string/remove-last]</span><spanclass="delimiter">: </span><spanclass="description">remove the last character(s) of a string.</span>
75
75
- <spanclass="signature">[`removePunctuation( str )`][@stdlib/string/remove-punctuation]</span><spanclass="delimiter">: </span><spanclass="description">remove punctuation characters from a string.</span>
76
76
- <spanclass="signature">[`removeUTF8BOM( str )`][@stdlib/string/remove-utf8-bom]</span><spanclass="delimiter">: </span><spanclass="description">remove a UTF-8 byte order mark (BOM) from the beginning of a string.</span>
77
77
- <spanclass="signature">[`removeWords( str, words[, ignoreCase] )`][@stdlib/string/remove-words]</span><spanclass="delimiter">: </span><spanclass="description">remove a list of words from a string.</span>
0 commit comments