@stdlib/blas-ext-base-dsort2ins 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +6 -3
- package/SECURITY.md +5 -0
- package/docs/types/index.d.ts +6 -6
- package/package.json +21 -20
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -271,7 +271,7 @@ See [LICENSE][stdlib-license].
|
|
|
271
271
|
|
|
272
272
|
## Copyright
|
|
273
273
|
|
|
274
|
-
Copyright © 2016-
|
|
274
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
275
275
|
|
|
276
276
|
</section>
|
|
277
277
|
|
|
@@ -284,8 +284,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
284
284
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/blas-ext-base-dsort2ins.svg
|
|
285
285
|
[npm-url]: https://npmjs.org/package/@stdlib/blas-ext-base-dsort2ins
|
|
286
286
|
|
|
287
|
-
[test-image]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
288
|
-
[test-url]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/actions/workflows/test.yml?query=branch:v0.
|
|
287
|
+
[test-image]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
288
|
+
[test-url]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/actions/workflows/test.yml?query=branch:v0.2.0
|
|
289
289
|
|
|
290
290
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/blas-ext-base-dsort2ins/main.svg
|
|
291
291
|
[coverage-url]: https://codecov.io/github/stdlib-js/blas-ext-base-dsort2ins?branch=main
|
|
@@ -308,8 +308,11 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
308
308
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
309
309
|
|
|
310
310
|
[deno-url]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/tree/deno
|
|
311
|
+
[deno-readme]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/blob/deno/README.md
|
|
311
312
|
[umd-url]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/tree/umd
|
|
313
|
+
[umd-readme]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/blob/umd/README.md
|
|
312
314
|
[esm-url]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/tree/esm
|
|
315
|
+
[esm-readme]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/blob/esm/README.md
|
|
313
316
|
[branches-url]: https://github.com/stdlib-js/blas-ext-base-dsort2ins/blob/main/branches.md
|
|
314
317
|
|
|
315
318
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/blas-ext-base-dsort2ins/main/LICENSE
|
package/SECURITY.md
ADDED
package/docs/types/index.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ interface Routine {
|
|
|
34
34
|
* @returns `x`
|
|
35
35
|
*
|
|
36
36
|
* @example
|
|
37
|
-
* var Float64Array = require(
|
|
37
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
38
38
|
*
|
|
39
39
|
* var x = new Float64Array( [ 1.0, -2.0, 3.0, -4.0 ] );
|
|
40
40
|
* var y = new Float64Array( [ 0.0, 1.0, 2.0, 3.0 ] );
|
|
@@ -47,7 +47,7 @@ interface Routine {
|
|
|
47
47
|
* console.log( y );
|
|
48
48
|
* // => <Float64Array>[ 3.0, 1.0, 0.0, 2.0 ]
|
|
49
49
|
*/
|
|
50
|
-
( N: number, order: number, x: Float64Array, strideX: number, y: Float64Array, strideY: number ): Float64Array;
|
|
50
|
+
( N: number, order: number, x: Float64Array, strideX: number, y: Float64Array, strideY: number ): Float64Array;
|
|
51
51
|
|
|
52
52
|
/**
|
|
53
53
|
* Simultaneously sorts two double-precision floating-point strided arrays based on the sort order of the first array using insertion sort and alternative indexing semantics.
|
|
@@ -63,7 +63,7 @@ interface Routine {
|
|
|
63
63
|
* @returns `x`
|
|
64
64
|
*
|
|
65
65
|
* @example
|
|
66
|
-
* var Float64Array = require(
|
|
66
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
67
67
|
*
|
|
68
68
|
* var x = new Float64Array( [ 1.0, -2.0, 3.0, -4.0 ] );
|
|
69
69
|
* var y = new Float64Array( [ 0.0, 1.0, 2.0, 3.0 ] );
|
|
@@ -76,7 +76,7 @@ interface Routine {
|
|
|
76
76
|
* console.log( y );
|
|
77
77
|
* // => <Float64Array>[ 3.0, 1.0, 0.0, 2.0 ]
|
|
78
78
|
*/
|
|
79
|
-
ndarray( N: number, order: number, x: Float64Array, strideX: number, offsetX: number, y: Float64Array, strideY: number, offsetY: number ): Float64Array;
|
|
79
|
+
ndarray( N: number, order: number, x: Float64Array, strideX: number, offsetX: number, y: Float64Array, strideY: number, offsetY: number ): Float64Array;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
/**
|
|
@@ -91,7 +91,7 @@ interface Routine {
|
|
|
91
91
|
* @returns `x`
|
|
92
92
|
*
|
|
93
93
|
* @example
|
|
94
|
-
* var Float64Array = require(
|
|
94
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
95
95
|
*
|
|
96
96
|
* var x = new Float64Array( [ 1.0, -2.0, 3.0, -4.0 ] );
|
|
97
97
|
* var y = new Float64Array( [ 0.0, 1.0, 2.0, 3.0 ] );
|
|
@@ -105,7 +105,7 @@ interface Routine {
|
|
|
105
105
|
* // => <Float64Array>[ 3.0, 1.0, 0.0, 2.0 ]
|
|
106
106
|
*
|
|
107
107
|
* @example
|
|
108
|
-
* var Float64Array = require(
|
|
108
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
109
109
|
*
|
|
110
110
|
* var x = new Float64Array( [ 1.0, -2.0, 3.0, -4.0 ] );
|
|
111
111
|
* var y = new Float64Array( [ 0.0, 1.0, 2.0, 3.0 ] );
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/blas-ext-base-dsort2ins",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Simultaneously sort two double-precision floating-point strided arrays based on the sort order of the first array using insertion sort.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -41,30 +41,31 @@
|
|
|
41
41
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@stdlib/assert-is-error": "^0.
|
|
45
|
-
"@stdlib/math-base-assert-is-nan": "^0.
|
|
46
|
-
"@stdlib/math-base-assert-is-negative-zero": "^0.
|
|
47
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.
|
|
48
|
-
"@stdlib/utils-library-manifest": "^0.
|
|
49
|
-
"@stdlib/utils-try-require": "^0.
|
|
44
|
+
"@stdlib/assert-is-error": "^0.2.0",
|
|
45
|
+
"@stdlib/math-base-assert-is-nan": "^0.2.0",
|
|
46
|
+
"@stdlib/math-base-assert-is-negative-zero": "^0.2.0",
|
|
47
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
48
|
+
"@stdlib/utils-library-manifest": "^0.2.0",
|
|
49
|
+
"@stdlib/utils-try-require": "^0.2.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@stdlib/array-float64": "^0.
|
|
53
|
-
"@stdlib/assert-is-browser": "^0.1.
|
|
54
|
-
"@stdlib/
|
|
55
|
-
"@stdlib/
|
|
56
|
-
"@stdlib/math-base-
|
|
57
|
-
"@stdlib/math-base-special-
|
|
58
|
-
"@stdlib/math-base-special-
|
|
59
|
-
"@stdlib/math-base-special-
|
|
60
|
-
"@stdlib/
|
|
61
|
-
"@stdlib/random-base-
|
|
62
|
-
"@stdlib/random-base-
|
|
63
|
-
"@stdlib/random-base-uniform": "^0.0.6",
|
|
52
|
+
"@stdlib/array-float64": "^0.1.1",
|
|
53
|
+
"@stdlib/assert-is-browser": "^0.1.1",
|
|
54
|
+
"@stdlib/blas-base-dcopy": "^0.1.1",
|
|
55
|
+
"@stdlib/math-base-assert-is-positive-zero": "^0.1.1",
|
|
56
|
+
"@stdlib/math-base-special-floor": "^0.1.1",
|
|
57
|
+
"@stdlib/math-base-special-pow": "^0.1.0",
|
|
58
|
+
"@stdlib/math-base-special-round": "^0.1.1",
|
|
59
|
+
"@stdlib/math-base-special-sqrt": "^0.1.1",
|
|
60
|
+
"@stdlib/random-base-discrete-uniform": "^0.1.0",
|
|
61
|
+
"@stdlib/random-base-randu": "^0.1.0",
|
|
62
|
+
"@stdlib/random-base-uniform": "^0.1.0",
|
|
64
63
|
"proxyquire": "^2.0.0",
|
|
65
64
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
66
65
|
"istanbul": "^0.4.1",
|
|
67
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
66
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
67
|
+
"@stdlib/bench-harness": "^0.1.2",
|
|
68
|
+
"@stdlib/bench": "^0.3.1"
|
|
68
69
|
},
|
|
69
70
|
"engines": {
|
|
70
71
|
"node": ">=0.10.0",
|
package/CITATION.cff
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: stdlib
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this software, please cite it using the
|
|
5
|
-
metadata from this file.
|
|
6
|
-
|
|
7
|
-
type: software
|
|
8
|
-
|
|
9
|
-
authors:
|
|
10
|
-
- name: The Stdlib Authors
|
|
11
|
-
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
-
|
|
13
|
-
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
-
url: https://stdlib.io
|
|
15
|
-
|
|
16
|
-
abstract: |
|
|
17
|
-
Standard library for JavaScript and Node.js.
|
|
18
|
-
|
|
19
|
-
keywords:
|
|
20
|
-
- JavaScript
|
|
21
|
-
- Node.js
|
|
22
|
-
- TypeScript
|
|
23
|
-
- standard library
|
|
24
|
-
- scientific computing
|
|
25
|
-
- numerical computing
|
|
26
|
-
- statistical computing
|
|
27
|
-
|
|
28
|
-
license: Apache-2.0 AND BSL-1.0
|
|
29
|
-
|
|
30
|
-
date-released: 2016
|