@stdlib/blas-ext-base-dsort2hp 0.1.0 → 0.2.1

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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2023 The Stdlib Authors.
1
+ Copyright (c) 2016-2024 The Stdlib Authors.
package/README.md CHANGED
@@ -283,7 +283,7 @@ See [LICENSE][stdlib-license].
283
283
 
284
284
  ## Copyright
285
285
 
286
- Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
286
+ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
287
287
 
288
288
  </section>
289
289
 
@@ -296,8 +296,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
296
296
  [npm-image]: http://img.shields.io/npm/v/@stdlib/blas-ext-base-dsort2hp.svg
297
297
  [npm-url]: https://npmjs.org/package/@stdlib/blas-ext-base-dsort2hp
298
298
 
299
- [test-image]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/actions/workflows/test.yml/badge.svg?branch=v0.1.0
300
- [test-url]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/actions/workflows/test.yml?query=branch:v0.1.0
299
+ [test-image]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/actions/workflows/test.yml/badge.svg?branch=v0.2.1
300
+ [test-url]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/actions/workflows/test.yml?query=branch:v0.2.1
301
301
 
302
302
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/blas-ext-base-dsort2hp/main.svg
303
303
  [coverage-url]: https://codecov.io/github/stdlib-js/blas-ext-base-dsort2hp?branch=main
@@ -320,8 +320,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
320
320
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
321
321
 
322
322
  [deno-url]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/tree/deno
323
+ [deno-readme]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/blob/deno/README.md
323
324
  [umd-url]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/tree/umd
325
+ [umd-readme]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/blob/umd/README.md
324
326
  [esm-url]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/tree/esm
327
+ [esm-readme]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/blob/esm/README.md
325
328
  [branches-url]: https://github.com/stdlib-js/blas-ext-base-dsort2hp/blob/main/branches.md
326
329
 
327
330
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/blas-ext-base-dsort2hp/main/LICENSE
package/SECURITY.md ADDED
@@ -0,0 +1,5 @@
1
+ # Security
2
+
3
+ > Policy for reporting security vulnerabilities.
4
+
5
+ See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
@@ -34,7 +34,7 @@ interface Routine {
34
34
  * @returns `x`
35
35
  *
36
36
  * @example
37
- * var Float64Array = require( `@stdlib/array/float64` );
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; // tslint:disable-line:max-line-length
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 heapsort and alternative indexing semantics.
@@ -63,7 +63,7 @@ interface Routine {
63
63
  * @returns `x`
64
64
  *
65
65
  * @example
66
- * var Float64Array = require( `@stdlib/array/float64` );
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; // tslint:disable-line:max-line-length
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( `@stdlib/array/float64` );
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( `@stdlib/array/float64` );
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-dsort2hp",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Simultaneously sort two double-precision floating-point strided arrays based on the sort order of the first array using heapsort.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -17,21 +17,14 @@
17
17
  "browser": "./lib/main.js",
18
18
  "gypfile": false,
19
19
  "directories": {
20
- "benchmark": "./benchmark",
21
20
  "doc": "./docs",
22
- "example": "./examples",
23
21
  "include": "./include",
24
22
  "lib": "./lib",
25
23
  "src": "./src",
26
- "test": "./test"
24
+ "dist": "./dist"
27
25
  },
28
26
  "types": "./docs/types",
29
- "scripts": {
30
- "test": "make test",
31
- "test-cov": "make test-cov",
32
- "examples": "make examples",
33
- "benchmark": "make benchmark"
34
- },
27
+ "scripts": {},
35
28
  "homepage": "https://stdlib.io",
36
29
  "repository": {
37
30
  "type": "git",
@@ -41,30 +34,15 @@
41
34
  "url": "https://github.com/stdlib-js/stdlib/issues"
42
35
  },
43
36
  "dependencies": {
44
- "@stdlib/assert-is-error": "^0.1.0",
45
- "@stdlib/math-base-assert-is-nan": "^0.1.0",
46
- "@stdlib/math-base-assert-is-positive-zero": "^0.1.0",
47
- "@stdlib/math-base-special-floor": "^0.1.0",
48
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0",
49
- "@stdlib/utils-library-manifest": "^0.1.0",
50
- "@stdlib/utils-try-require": "^0.1.0"
51
- },
52
- "devDependencies": {
53
- "@stdlib/array-float64": "^0.1.0",
54
- "@stdlib/assert-is-browser": "^0.1.0",
55
- "@stdlib/bench": "^0.1.0",
56
- "@stdlib/blas-base-dcopy": "^0.1.0",
57
- "@stdlib/math-base-assert-is-negative-zero": "^0.1.0",
58
- "@stdlib/math-base-special-pow": "^0.0.7",
59
- "@stdlib/math-base-special-round": "^0.1.0",
60
- "@stdlib/random-base-discrete-uniform": "^0.0.6",
61
- "@stdlib/random-base-randu": "^0.0.8",
62
- "@stdlib/random-base-uniform": "^0.0.6",
63
- "proxyquire": "^2.0.0",
64
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
65
- "istanbul": "^0.4.1",
66
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
37
+ "@stdlib/assert-is-error": "^0.2.1",
38
+ "@stdlib/math-base-assert-is-nan": "^0.2.1",
39
+ "@stdlib/math-base-assert-is-positive-zero": "^0.2.1",
40
+ "@stdlib/math-base-special-floor": "^0.2.1",
41
+ "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1",
42
+ "@stdlib/utils-library-manifest": "^0.2.1",
43
+ "@stdlib/utils-try-require": "^0.2.1"
67
44
  },
45
+ "devDependencies": {},
68
46
  "engines": {
69
47
  "node": ">=0.10.0",
70
48
  "npm": ">2.7.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