Skip to content

Commit 6a70bd1

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents 04668ca + 6356de9 commit 6a70bd1

File tree

51 files changed

+2324
-19
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2324
-19
lines changed

lib/node_modules/@stdlib/assert/has-search-symbol-support/bin/cli

100644100755
File mode changed.

lib/node_modules/@stdlib/assert/has-split-symbol-support/bin/cli

100644100755
File mode changed.

lib/node_modules/@stdlib/assert/has-to-primitive-symbol-support/bin/cli

100644100755
File mode changed.

lib/node_modules/@stdlib/blas/ext/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ The namespace contains the following:
5050
- <span class="signature">[`findIndex( x[, options], clbk[, thisArg] )`][@stdlib/blas/ext/find-index]</span><span class="delimiter">: </span><span class="description">return the index of the first element along an ndarray dimension which passes a test implemented by a predicate function.</span>
5151
- <span class="signature">[`findLastIndex( x[, options], clbk[, thisArg] )`][@stdlib/blas/ext/find-last-index]</span><span class="delimiter">: </span><span class="description">return the index of the last element along an ndarray dimension which passes a test implemented by a predicate function.</span>
5252
- <span class="signature">[`indexOf( x, searchElement[, fromIndex][, options] )`][@stdlib/blas/ext/index-of]</span><span class="delimiter">: </span><span class="description">return the first index of a specified search element along an ndarray dimension.</span>
53+
- <span class="signature">[`lastIndexOf( x, searchElement[, fromIndex][, options] )`][@stdlib/blas/ext/last-index-of]</span><span class="delimiter">: </span><span class="description">return the last index of a specified search element along an ndarray dimension.</span>
54+
- <span class="signature">[`sorthp( x[, sortOrder][, options] )`][@stdlib/blas/ext/sorthp]</span><span class="delimiter">: </span><span class="description">sort an input ndarray along one or more ndarray dimensions using heapsort.</span>
5355
- <span class="signature">[`sum( x[, options] )`][@stdlib/blas/ext/sum]</span><span class="delimiter">: </span><span class="description">compute the sum along one or more ndarray dimensions.</span>
56+
- <span class="signature">[`toSortedhp( x[, sortOrder][, options] )`][@stdlib/blas/ext/to-sortedhp]</span><span class="delimiter">: </span><span class="description">return a new ndarray containing the elements of an input ndarray sorted along one or more ndarray dimensions using heapsort.</span>
5457

5558
</div>
5659

@@ -103,8 +106,14 @@ console.log( objectKeys( ns ) );
103106

104107
[@stdlib/blas/ext/index-of]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/index-of
105108

109+
[@stdlib/blas/ext/last-index-of]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/last-index-of
110+
111+
[@stdlib/blas/ext/sorthp]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/sorthp
112+
106113
[@stdlib/blas/ext/sum]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/sum
107114

115+
[@stdlib/blas/ext/to-sortedhp]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/to-sortedhp
116+
108117
<!-- </toc-links> -->
109118

110119
</section>

lib/node_modules/@stdlib/blas/ext/base/ndarray/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,21 @@ The namespace exposes the following APIs:
4949
- <span class="signature">[`dcusum( arrays )`][@stdlib/blas/ext/base/ndarray/dcusum]</span><span class="delimiter">: </span><span class="description">compute the cumulative sum of a one-dimensional double-precision floating-point ndarray.</span>
5050
- <span class="signature">[`dindexOf( arrays )`][@stdlib/blas/ext/base/ndarray/dindex-of]</span><span class="delimiter">: </span><span class="description">return the first index of a search element in a one-dimensional double-precision floating-point ndarray.</span>
5151
- <span class="signature">[`dlastIndexOf( arrays )`][@stdlib/blas/ext/base/ndarray/dlast-index-of]</span><span class="delimiter">: </span><span class="description">return the last index of a search element in a one-dimensional double-precision floating-point ndarray.</span>
52+
- <span class="signature">[`dlinspace( arrays )`][@stdlib/blas/ext/base/ndarray/dlinspace]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional double-precision floating-point ndarray with linearly spaced values over a specified interval.</span>
5253
- <span class="signature">[`dsorthp( arrays )`][@stdlib/blas/ext/base/ndarray/dsorthp]</span><span class="delimiter">: </span><span class="description">sort a one-dimensional double-precision floating-point ndarray using heapsort.</span>
5354
- <span class="signature">[`dsum( arrays )`][@stdlib/blas/ext/base/ndarray/dsum]</span><span class="delimiter">: </span><span class="description">compute the sum of all elements in a one-dimensional double-precision floating-point ndarray.</span>
5455
- <span class="signature">[`gcusum( arrays )`][@stdlib/blas/ext/base/ndarray/gcusum]</span><span class="delimiter">: </span><span class="description">compute the cumulative sum of a one-dimensional ndarray.</span>
5556
- <span class="signature">[`gfindIndex( arrays, clbk[, thisArg] )`][@stdlib/blas/ext/base/ndarray/gfind-index]</span><span class="delimiter">: </span><span class="description">return the index of the first element in a one-dimensional ndarray which passes a test implemented by a predicate function.</span>
5657
- <span class="signature">[`gfindLastIndex( arrays, clbk[, thisArg] )`][@stdlib/blas/ext/base/ndarray/gfind-last-index]</span><span class="delimiter">: </span><span class="description">return the index of the last element in a one-dimensional ndarray which passes a test implemented by a predicate function.</span>
5758
- <span class="signature">[`gindexOf( arrays )`][@stdlib/blas/ext/base/ndarray/gindex-of]</span><span class="delimiter">: </span><span class="description">return the first index of a search element in a one-dimensional ndarray.</span>
5859
- <span class="signature">[`glastIndexOf( arrays )`][@stdlib/blas/ext/base/ndarray/glast-index-of]</span><span class="delimiter">: </span><span class="description">return the last index of a search element in a one-dimensional ndarray.</span>
60+
- <span class="signature">[`glinspace( arrays )`][@stdlib/blas/ext/base/ndarray/glinspace]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional ndarray with linearly spaced values over a specified interval.</span>
5961
- <span class="signature">[`gsorthp( arrays )`][@stdlib/blas/ext/base/ndarray/gsorthp]</span><span class="delimiter">: </span><span class="description">sort a one-dimensional ndarray using heapsort.</span>
6062
- <span class="signature">[`gsum( arrays )`][@stdlib/blas/ext/base/ndarray/gsum]</span><span class="delimiter">: </span><span class="description">compute the sum of all elements in a one-dimensional ndarray.</span>
6163
- <span class="signature">[`scusum( arrays )`][@stdlib/blas/ext/base/ndarray/scusum]</span><span class="delimiter">: </span><span class="description">compute the cumulative sum of a one-dimensional single-precision floating-point ndarray.</span>
6264
- <span class="signature">[`sindexOf( arrays )`][@stdlib/blas/ext/base/ndarray/sindex-of]</span><span class="delimiter">: </span><span class="description">return the first index of a search element in a one-dimensional single-precision floating-point ndarray.</span>
6365
- <span class="signature">[`slastIndexOf( arrays )`][@stdlib/blas/ext/base/ndarray/slast-index-of]</span><span class="delimiter">: </span><span class="description">return the last index of a search element in a one-dimensional single-precision floating-point ndarray.</span>
66+
- <span class="signature">[`slinspace( arrays )`][@stdlib/blas/ext/base/ndarray/slinspace]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional single-precision floating-point ndarray with linearly spaced values over a specified interval.</span>
6467
- <span class="signature">[`ssorthp( arrays )`][@stdlib/blas/ext/base/ndarray/ssorthp]</span><span class="delimiter">: </span><span class="description">sort a one-dimensional single-precision floating-point ndarray using heapsort.</span>
6568
- <span class="signature">[`ssum( arrays )`][@stdlib/blas/ext/base/ndarray/ssum]</span><span class="delimiter">: </span><span class="description">compute the sum of all elements in a one-dimensional single-precision floating-point ndarray.</span>
6669
- <span class="signature">[`zsum( arrays )`][@stdlib/blas/ext/base/ndarray/zsum]</span><span class="delimiter">: </span><span class="description">compute the sum of all elements in a one-dimensional double-precision complex floating-point ndarray.</span>
@@ -114,6 +117,8 @@ console.log( objectKeys( ns ) );
114117

115118
[@stdlib/blas/ext/base/ndarray/dlast-index-of]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/dlast-index-of
116119

120+
[@stdlib/blas/ext/base/ndarray/dlinspace]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/dlinspace
121+
117122
[@stdlib/blas/ext/base/ndarray/dsorthp]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/dsorthp
118123

119124
[@stdlib/blas/ext/base/ndarray/dsum]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/dsum
@@ -128,6 +133,8 @@ console.log( objectKeys( ns ) );
128133

129134
[@stdlib/blas/ext/base/ndarray/glast-index-of]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/glast-index-of
130135

136+
[@stdlib/blas/ext/base/ndarray/glinspace]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/glinspace
137+
131138
[@stdlib/blas/ext/base/ndarray/gsorthp]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/gsorthp
132139

133140
[@stdlib/blas/ext/base/ndarray/gsum]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/gsum
@@ -138,6 +145,8 @@ console.log( objectKeys( ns ) );
138145

139146
[@stdlib/blas/ext/base/ndarray/slast-index-of]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/slast-index-of
140147

148+
[@stdlib/blas/ext/base/ndarray/slinspace]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/slinspace
149+
141150
[@stdlib/blas/ext/base/ndarray/ssorthp]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/ssorthp
142151

143152
[@stdlib/blas/ext/base/ndarray/ssum]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ndarray/ssum

lib/node_modules/@stdlib/complex/float32/base/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,10 @@
5858
"ns",
5959
"float32",
6060
"base"
61-
]
61+
],
62+
"__stdlib__": {
63+
"scaffold": {
64+
"alias_prefix": "stdlib_base_complex64_"
65+
}
66+
}
6267
}

lib/node_modules/@stdlib/complex/float64/base/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,10 @@
5858
"ns",
5959
"float64",
6060
"base"
61-
]
61+
],
62+
"__stdlib__": {
63+
"scaffold": {
64+
"alias_prefix": "stdlib_base_complex128_"
65+
}
66+
}
6267
}

lib/node_modules/@stdlib/error/tools/database/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,3 +1215,4 @@
12151215
"Ja","invalid argument. Second argument is not broadcast compatible with the list of input ndarrays. Array shape: (%s). Desired shape: (%s).","TypeError"
12161216
"Jb","invalid argument. Second argument must be a negative integer. Value: `%s`.","TypeError"
12171217
"Jc","invalid argument. First argument cannot be safely cast to the output data type. Data types: [%s, %s].","TypeError"
1218+
"Jd","invalid option. First argument cannot be safely cast to the specified data type. Input data type: %s. Option: `%s`.","TypeError"

lib/node_modules/@stdlib/error/tools/database/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/error/tools/id2pkg/data/data.csv

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,8 @@
963963
"03B",@stdlib/assert-has-generator-support
964964
"03C",@stdlib/assert/has-globalthis-support
965965
"03D",@stdlib/assert-has-globalthis-support
966+
"2XY",@stdlib/assert/has-has-instance-symbol-support
967+
"2XZ",@stdlib/assert-has-has-instance-symbol-support
966968
"03E",@stdlib/assert/has-int16array-support
967969
"03F",@stdlib/assert-has-int16array-support
968970
"03G",@stdlib/assert/has-int32array-support
@@ -975,6 +977,8 @@
975977
"03L",@stdlib/assert-has-iterator-symbol-support
976978
"03M",@stdlib/assert/has-map-support
977979
"03N",@stdlib/assert-has-map-support
980+
"2Xa",@stdlib/assert/has-match-symbol-support
981+
"2Xb",@stdlib/assert-has-match-symbol-support
978982
"03O",@stdlib/assert/has-node-buffer-support
979983
"03P",@stdlib/assert-has-node-buffer-support
980984
"03Q",@stdlib/assert/has-own-property
@@ -983,12 +987,20 @@
983987
"03T",@stdlib/assert-has-property
984988
"03U",@stdlib/assert/has-proxy-support
985989
"03V",@stdlib/assert-has-proxy-support
990+
"2Xc",@stdlib/assert/has-replace-symbol-support
991+
"2Xd",@stdlib/assert-has-replace-symbol-support
992+
"2Xe",@stdlib/assert/has-search-symbol-support
993+
"2Xf",@stdlib/assert-has-search-symbol-support
986994
"03W",@stdlib/assert/has-set-support
987995
"03X",@stdlib/assert-has-set-support
988996
"03Y",@stdlib/assert/has-sharedarraybuffer-support
989997
"03Z",@stdlib/assert-has-sharedarraybuffer-support
998+
"2Xg",@stdlib/assert/has-split-symbol-support
999+
"2Xh",@stdlib/assert-has-split-symbol-support
9901000
"03a",@stdlib/assert/has-symbol-support
9911001
"03b",@stdlib/assert-has-symbol-support
1002+
"2Xi",@stdlib/assert/has-to-primitive-symbol-support
1003+
"2Xj",@stdlib/assert-has-to-primitive-symbol-support
9921004
"03c",@stdlib/assert/has-tostringtag-support
9931005
"03d",@stdlib/assert-has-tostringtag-support
9941006
"03e",@stdlib/assert/has-uint16array-support
@@ -1926,6 +1938,8 @@
19261938
"2Nl",@stdlib/blas-ext-base-dindex-of
19271939
"2Nm",@stdlib/blas/ext/base/dlast-index-of
19281940
"2Nn",@stdlib/blas-ext-base-dlast-index-of
1941+
"2Xk",@stdlib/blas/ext/base/dlinspace
1942+
"2Xl",@stdlib/blas-ext-base-dlinspace
19291943
"0Ck",@stdlib/blas/ext/base/dnanasum
19301944
"0Cl",@stdlib/blas-ext-base-dnanasum
19311945
"0Cm",@stdlib/blas/ext/base/dnanasumors
@@ -2032,6 +2046,8 @@
20322046
"2Np",@stdlib/blas-ext-base-gindex-of
20332047
"2Nq",@stdlib/blas/ext/base/glast-index-of
20342048
"2Nr",@stdlib/blas-ext-base-glast-index-of
2049+
"2Xm",@stdlib/blas/ext/base/glinspace
2050+
"2Xn",@stdlib/blas-ext-base-glinspace
20352051
"0EG",@stdlib/blas/ext/base/gnannsumkbn
20362052
"0EH",@stdlib/blas-ext-base-gnannsumkbn
20372053
"2Hw",@stdlib/blas/ext/base/gnannsumpw
@@ -2078,6 +2094,8 @@
20782094
"2Nt",@stdlib/blas-ext-base-ndarray-dindex-of
20792095
"2Nu",@stdlib/blas/ext/base/ndarray/dlast-index-of
20802096
"2Nv",@stdlib/blas-ext-base-ndarray-dlast-index-of
2097+
"2Xo",@stdlib/blas/ext/base/ndarray/dlinspace
2098+
"2Xp",@stdlib/blas-ext-base-ndarray-dlinspace
20812099
"2T2",@stdlib/blas/ext/base/ndarray/dsorthp
20822100
"2T3",@stdlib/blas-ext-base-ndarray-dsorthp
20832101
"2FG",@stdlib/blas/ext/base/ndarray/dsum
@@ -2092,6 +2110,8 @@
20922110
"2Nx",@stdlib/blas-ext-base-ndarray-gindex-of
20932111
"2Ny",@stdlib/blas/ext/base/ndarray/glast-index-of
20942112
"2Nz",@stdlib/blas-ext-base-ndarray-glast-index-of
2113+
"2Xq",@stdlib/blas/ext/base/ndarray/glinspace
2114+
"2Xr",@stdlib/blas-ext-base-ndarray-glinspace
20952115
"2T8",@stdlib/blas/ext/base/ndarray/gsorthp
20962116
"2T9",@stdlib/blas-ext-base-ndarray-gsorthp
20972117
"2FK",@stdlib/blas/ext/base/ndarray/gsum
@@ -2104,6 +2124,8 @@
21042124
"2O1",@stdlib/blas-ext-base-ndarray-sindex-of
21052125
"2O2",@stdlib/blas/ext/base/ndarray/slast-index-of
21062126
"2O3",@stdlib/blas-ext-base-ndarray-slast-index-of
2127+
"2Xs",@stdlib/blas/ext/base/ndarray/slinspace
2128+
"2Xt",@stdlib/blas-ext-base-ndarray-slinspace
21072129
"2TA",@stdlib/blas/ext/base/ndarray/ssorthp
21082130
"2TB",@stdlib/blas-ext-base-ndarray-ssorthp
21092131
"2FQ",@stdlib/blas/ext/base/ndarray/ssum
@@ -2154,6 +2176,8 @@
21542176
"2O5",@stdlib/blas-ext-base-sindex-of
21552177
"2O6",@stdlib/blas/ext/base/slast-index-of
21562178
"2O7",@stdlib/blas-ext-base-slast-index-of
2179+
"2Xu",@stdlib/blas/ext/base/slinspace
2180+
"2Xv",@stdlib/blas-ext-base-slinspace
21572181
"0FU",@stdlib/blas/ext/base/snansum
21582182
"0FV",@stdlib/blas-ext-base-snansum
21592183
"0FW",@stdlib/blas/ext/base/snansumkbn
@@ -4755,6 +4779,8 @@
47554779
"0iJ",@stdlib/ndarray-base-char2dtype
47564780
"0iK",@stdlib/ndarray/base/clamp-index
47574781
"0iL",@stdlib/ndarray-base-clamp-index
4782+
"2Xw",@stdlib/ndarray/base/complement-shape
4783+
"2Xx",@stdlib/ndarray-base-complement-shape
47584784
"2Wq",@stdlib/ndarray/base/copy
47594785
"2Wr",@stdlib/ndarray-base-copy
47604786
"2Ie",@stdlib/ndarray/base/count-falsy
@@ -5031,6 +5057,8 @@
50315057
"0jn",@stdlib/ndarray-casting-modes
50325058
"2Wy",@stdlib/ndarray/concat
50335059
"2Wz",@stdlib/ndarray-concat
5060+
"2Xy",@stdlib/ndarray/copy
5061+
"2Xz",@stdlib/ndarray-copy
50345062
"2Iu",@stdlib/ndarray/count-falsy
50355063
"2Iv",@stdlib/ndarray-count-falsy
50365064
"2Iw",@stdlib/ndarray/count-if
@@ -7225,10 +7253,20 @@
72257253
"2Vn",@stdlib/stats-base-ndarray-dmaxsorted
72267254
"2UE",@stdlib/stats/base/ndarray/dmean
72277255
"2UF",@stdlib/stats-base-ndarray-dmean
7256+
"2Y0",@stdlib/stats/base/ndarray/dmeankbn
7257+
"2Y1",@stdlib/stats-base-ndarray-dmeankbn
7258+
"2Y2",@stdlib/stats/base/ndarray/dmeankbn2
7259+
"2Y3",@stdlib/stats-base-ndarray-dmeankbn2
7260+
"2Y4",@stdlib/stats/base/ndarray/dmeanli
7261+
"2Y5",@stdlib/stats-base-ndarray-dmeanli
7262+
"2Y6",@stdlib/stats/base/ndarray/dmeanlipw
7263+
"2Y7",@stdlib/stats-base-ndarray-dmeanlipw
72287264
"2Pe",@stdlib/stats/base/ndarray/dmin
72297265
"2Pf",@stdlib/stats-base-ndarray-dmin
72307266
"2UG",@stdlib/stats/base/ndarray/dminabs
72317267
"2UH",@stdlib/stats-base-ndarray-dminabs
7268+
"2Y8",@stdlib/stats/base/ndarray/dminsorted
7269+
"2Y9",@stdlib/stats-base-ndarray-dminsorted
72327270
"2UI",@stdlib/stats/base/ndarray/dnanmax
72337271
"2UJ",@stdlib/stats-base-ndarray-dnanmax
72347272
"2VA",@stdlib/stats/base/ndarray/dnanmean
@@ -7275,6 +7313,8 @@
72757313
"2XT",@stdlib/stats-base-ndarray-minsorted
72767314
"2XU",@stdlib/stats/base/ndarray/mskmax
72777315
"2XV",@stdlib/stats-base-ndarray-mskmax
7316+
"2YA",@stdlib/stats/base/ndarray/mskmin
7317+
"2YB",@stdlib/stats-base-ndarray-mskmin
72787318
"2US",@stdlib/stats/base/ndarray/nanmax
72797319
"2UT",@stdlib/stats-base-ndarray-nanmax
72807320
"2VC",@stdlib/stats/base/ndarray/nanmean
@@ -7283,6 +7323,8 @@
72837323
"2UV",@stdlib/stats-base-ndarray-nanmin
72847324
"2F2",@stdlib/stats/base/ndarray
72857325
"2F3",@stdlib/stats-base-ndarray
7326+
"2YC",@stdlib/stats/base/ndarray/range-by
7327+
"2YD",@stdlib/stats-base-ndarray-range-by
72867328
"2Po",@stdlib/stats/base/ndarray/range
72877329
"2Pp",@stdlib/stats-base-ndarray-range
72887330
"2UW",@stdlib/stats/base/ndarray/scovarmtk
@@ -7295,6 +7337,8 @@
72957337
"2F5",@stdlib/stats-base-ndarray-smax
72967338
"2UY",@stdlib/stats/base/ndarray/smaxabs
72977339
"2UZ",@stdlib/stats-base-ndarray-smaxabs
7340+
"2YE",@stdlib/stats/base/ndarray/smaxabssorted
7341+
"2YF",@stdlib/stats-base-ndarray-smaxabssorted
72987342
"2Vq",@stdlib/stats/base/ndarray/smaxsorted
72997343
"2Vr",@stdlib/stats-base-ndarray-smaxsorted
73007344
"2Ua",@stdlib/stats/base/ndarray/smean
@@ -7303,12 +7347,18 @@
73037347
"2Pt",@stdlib/stats-base-ndarray-smin
73047348
"2Uc",@stdlib/stats/base/ndarray/sminabs
73057349
"2Ud",@stdlib/stats-base-ndarray-sminabs
7350+
"2YG",@stdlib/stats/base/ndarray/sminsorted
7351+
"2YH",@stdlib/stats-base-ndarray-sminsorted
73067352
"2Ue",@stdlib/stats/base/ndarray/snanmax
73077353
"2Uf",@stdlib/stats-base-ndarray-snanmax
7354+
"2YI",@stdlib/stats/base/ndarray/snanmaxabs
7355+
"2YJ",@stdlib/stats-base-ndarray-snanmaxabs
73087356
"2VE",@stdlib/stats/base/ndarray/snanmean
73097357
"2VF",@stdlib/stats-base-ndarray-snanmean
73107358
"2Ug",@stdlib/stats/base/ndarray/snanmin
73117359
"2Uh",@stdlib/stats-base-ndarray-snanmin
7360+
"2YK",@stdlib/stats/base/ndarray/snanminabs
7361+
"2YL",@stdlib/stats-base-ndarray-snanminabs
73127362
"2Pu",@stdlib/stats/base/ndarray/srange
73137363
"2Pv",@stdlib/stats-base-ndarray-srange
73147364
"2Pw",@stdlib/stats/base/ndarray/sztest
@@ -8573,11 +8623,15 @@
85738623
"1Pz",@stdlib/symbol-async-iterator
85748624
"1Q0",@stdlib/symbol/ctor
85758625
"1Q1",@stdlib/symbol-ctor
8626+
"2YM",@stdlib/symbol/has-instance
8627+
"2YN",@stdlib/symbol-has-instance
85768628
"2XW",@stdlib/symbol/is-concat-spreadable
85778629
"2XX",@stdlib/symbol-is-concat-spreadable
85788630
"1Q2",@stdlib/symbol/iterator
85798631
"1Q3",@stdlib/symbol-iterator
85808632
"1Q5",@stdlib/symbol
8633+
"2YO",@stdlib/symbol/to-primitive
8634+
"2YP",@stdlib/symbol-to-primitive
85818635
"1h2",@stdlib/time/base
85828636
"1h3",@stdlib/time-base
85838637
"1h4",@stdlib/time/base/parse-duration

0 commit comments

Comments
 (0)