Skip to content

Commit 459889b

Browse files
committed
Update namespace
1 parent 1edc09a commit 459889b

File tree

29 files changed

+164
-16
lines changed

29 files changed

+164
-16
lines changed

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv

+3
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,8 @@ propertySymbolsIn,"@stdlib/utils/property-symbols-in"
23522352
Proxy,"@stdlib/proxy/ctor"
23532353
push,"@stdlib/utils/push"
23542354
quarterOfYear,"@stdlib/time/quarter-of-year"
2355+
random.array.arcsine,"@stdlib/random/array/arcsine"
2356+
random.array.uniform,"@stdlib/random/array/uniform"
23552357
random.iterators.arcsine,"@stdlib/random/iter/arcsine"
23562358
random.iterators.bernoulli,"@stdlib/random/iter/bernoulli"
23572359
random.iterators.beta,"@stdlib/random/iter/beta"
@@ -2434,6 +2436,7 @@ random.streams.t,"@stdlib/random/streams/t"
24342436
random.streams.triangular,"@stdlib/random/streams/triangular"
24352437
random.streams.uniform,"@stdlib/random/streams/uniform"
24362438
random.streams.weibull,"@stdlib/random/streams/weibull"
2439+
random.strided.arcsine,"@stdlib/random/strided/arcsine"
24372440
ranks,"@stdlib/stats/ranks"
24382441
readDir,"@stdlib/fs/read-dir"
24392442
readFile,"@stdlib/fs/read-file"

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2related/data/data.csv

+3
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,8 @@ propertySymbolsIn,"propertyNamesIn,propertySymbols"
23522352
Proxy,""
23532353
push,"pop,shift,unshift"
23542354
quarterOfYear,"dayOfYear"
2355+
random.array.arcsine,"base.random.arcsine,random.strided.arcsine"
2356+
random.array.uniform,"base.random.uniform"
23552357
random.iterators.arcsine,"base.random.arcsine"
23562358
random.iterators.bernoulli,"base.random.bernoulli"
23572359
random.iterators.beta,"base.random.beta"
@@ -2434,6 +2436,7 @@ random.streams.t,"base.random.t,random.iterators.t"
24342436
random.streams.triangular,"base.random.triangular,random.iterators.triangular"
24352437
random.streams.uniform,"base.random.uniform,random.iterators.uniform"
24362438
random.streams.weibull,"base.random.weibull,random.iterators.weibull"
2439+
random.strided.arcsine,"base.random.arcsine,random.array.arcsine"
24372440
ranks,""
24382441
readDir,"exists,readFile"
24392442
readFile,"exists,open,readDir,readJSON,writeFile"

lib/node_modules/@stdlib/namespace/alias2related/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.csv

+3
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,8 @@ propertySymbolsIn,"@stdlib/utils-property-symbols-in"
23522352
Proxy,"@stdlib/proxy-ctor"
23532353
push,"@stdlib/utils-push"
23542354
quarterOfYear,"@stdlib/time-quarter-of-year"
2355+
random.array.arcsine,"@stdlib/random-array-arcsine"
2356+
random.array.uniform,"@stdlib/random-array-uniform"
23552357
random.iterators.arcsine,"@stdlib/random-iter-arcsine"
23562358
random.iterators.bernoulli,"@stdlib/random-iter-bernoulli"
23572359
random.iterators.beta,"@stdlib/random-iter-beta"
@@ -2434,6 +2436,7 @@ random.streams.t,"@stdlib/random-streams-t"
24342436
random.streams.triangular,"@stdlib/random-streams-triangular"
24352437
random.streams.uniform,"@stdlib/random-streams-uniform"
24362438
random.streams.weibull,"@stdlib/random-streams-weibull"
2439+
random.strided.arcsine,"@stdlib/random-strided-arcsine"
24372440
ranks,"@stdlib/stats-ranks"
24382441
readDir,"@stdlib/fs-read-dir"
24392442
readFile,"@stdlib/fs-read-file"

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.txt

+3
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,8 @@ propertySymbolsIn
23522352
Proxy
23532353
push
23542354
quarterOfYear
2355+
random.array.arcsine
2356+
random.array.uniform
23552357
random.iterators.arcsine
23562358
random.iterators.bernoulli
23572359
random.iterators.beta
@@ -2434,6 +2436,7 @@ random.streams.t
24342436
random.streams.triangular
24352437
random.streams.uniform
24362438
random.streams.weibull
2439+
random.strided.arcsine
24372440
ranks
24382441
readDir
24392442
readFile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2023 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
// MAIN //
22+
23+
/*
24+
* When adding names to the namespace, ensure that they are added in alphabetical order according to alias (namespace key).
25+
*/
26+
27+
var ns = [];
28+
29+
ns.push({
30+
'alias': 'random.array.arcsine',
31+
'path': '@stdlib/random/array/arcsine',
32+
'value': require( '@stdlib/random/array/arcsine' ),
33+
'type': 'Function',
34+
'related': [
35+
'@stdlib/random/arcsine',
36+
'@stdlib/random/base/arcsine',
37+
'@stdlib/random/strided/arcsine'
38+
]
39+
});
40+
41+
ns.push({
42+
'alias': 'random.array.uniform',
43+
'path': '@stdlib/random/array/uniform',
44+
'value': require( '@stdlib/random/array/uniform' ),
45+
'type': 'Function',
46+
'related': [
47+
'@stdlib/random/base/uniform',
48+
'@stdlib/random/strided/uniform',
49+
'@stdlib/random/uniform'
50+
]
51+
});
52+
53+
54+
// EXPORTS //
55+
56+
module.exports = ns;

lib/node_modules/@stdlib/namespace/lib/namespace/random/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ var append = require( './../append.js' );
3333
*/
3434
var ns = [];
3535

36+
append( ns, require( './array' ) );
3637
append( ns, require( './iterators' ) );
3738
append( ns, require( './streams' ) );
39+
append( ns, require( './strided' ) );
3840

3941

4042
// EXPORTS //
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2023 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
// MAIN //
22+
23+
/*
24+
* When adding names to the namespace, ensure that they are added in alphabetical order according to alias (namespace key).
25+
*/
26+
27+
var ns = [];
28+
29+
ns.push({
30+
'alias': 'random.strided.arcsine',
31+
'path': '@stdlib/random/strided/arcsine',
32+
'value': require( '@stdlib/random/strided/arcsine' ),
33+
'type': 'Function',
34+
'related': [
35+
'@stdlib/random/arcsine',
36+
'@stdlib/random/base/arcsine',
37+
'@stdlib/random/array/arcsine'
38+
]
39+
});
40+
41+
42+
// EXPORTS //
43+
44+
module.exports = ns;

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv

+3
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,8 @@
23522352
"@stdlib/proxy/ctor",Proxy
23532353
"@stdlib/utils/push",push
23542354
"@stdlib/time/quarter-of-year",quarterOfYear
2355+
"@stdlib/random/array/arcsine",random.array.arcsine
2356+
"@stdlib/random/array/uniform",random.array.uniform
23552357
"@stdlib/random/iter/arcsine",random.iterators.arcsine
23562358
"@stdlib/random/iter/bernoulli",random.iterators.bernoulli
23572359
"@stdlib/random/iter/beta",random.iterators.beta
@@ -2434,6 +2436,7 @@
24342436
"@stdlib/random/streams/triangular",random.streams.triangular
24352437
"@stdlib/random/streams/uniform",random.streams.uniform
24362438
"@stdlib/random/streams/weibull",random.streams.weibull
2439+
"@stdlib/random/strided/arcsine",random.strided.arcsine
24372440
"@stdlib/stats/ranks",ranks
24382441
"@stdlib/fs/read-dir",readDir
24392442
"@stdlib/fs/read-file",readFile

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2related/data/data.csv

+3
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,8 @@
23522352
"@stdlib/proxy/ctor",""
23532353
"@stdlib/utils/push","@stdlib/utils/pop,@stdlib/utils/shift,@stdlib/utils/unshift"
23542354
"@stdlib/time/quarter-of-year","@stdlib/time/day-of-year"
2355+
"@stdlib/random/array/arcsine","@stdlib/random/base/arcsine,@stdlib/random/strided/arcsine"
2356+
"@stdlib/random/array/uniform","@stdlib/random/base/uniform"
23552357
"@stdlib/random/iter/arcsine","@stdlib/random/base/arcsine"
23562358
"@stdlib/random/iter/bernoulli","@stdlib/random/base/bernoulli"
23572359
"@stdlib/random/iter/beta","@stdlib/random/base/beta"
@@ -2434,6 +2436,7 @@
24342436
"@stdlib/random/streams/triangular","@stdlib/random/base/triangular,@stdlib/random/iter/triangular"
24352437
"@stdlib/random/streams/uniform","@stdlib/random/base/uniform,@stdlib/random/iter/uniform"
24362438
"@stdlib/random/streams/weibull","@stdlib/random/base/weibull,@stdlib/random/iter/weibull"
2439+
"@stdlib/random/strided/arcsine","@stdlib/random/base/arcsine,@stdlib/random/array/arcsine"
24372440
"@stdlib/stats/ranks",""
24382441
"@stdlib/fs/read-dir","@stdlib/fs/exists,@stdlib/fs/read-file"
24392442
"@stdlib/fs/read-file","@stdlib/fs/exists,@stdlib/fs/open,@stdlib/fs/read-dir,@stdlib/fs/read-json,@stdlib/fs/write-file"

lib/node_modules/@stdlib/namespace/pkg2related/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.csv

+3
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,8 @@
23522352
"@stdlib/proxy/ctor","@stdlib/proxy-ctor"
23532353
"@stdlib/utils/push","@stdlib/utils-push"
23542354
"@stdlib/time/quarter-of-year","@stdlib/time-quarter-of-year"
2355+
"@stdlib/random/array/arcsine","@stdlib/random-array-arcsine"
2356+
"@stdlib/random/array/uniform","@stdlib/random-array-uniform"
23552357
"@stdlib/random/iter/arcsine","@stdlib/random-iter-arcsine"
23562358
"@stdlib/random/iter/bernoulli","@stdlib/random-iter-bernoulli"
23572359
"@stdlib/random/iter/beta","@stdlib/random-iter-beta"
@@ -2434,6 +2436,7 @@
24342436
"@stdlib/random/streams/triangular","@stdlib/random-streams-triangular"
24352437
"@stdlib/random/streams/uniform","@stdlib/random-streams-uniform"
24362438
"@stdlib/random/streams/weibull","@stdlib/random-streams-weibull"
2439+
"@stdlib/random/strided/arcsine","@stdlib/random-strided-arcsine"
24372440
"@stdlib/stats/ranks","@stdlib/stats-ranks"
24382441
"@stdlib/fs/read-dir","@stdlib/fs-read-dir"
24392442
"@stdlib/fs/read-file","@stdlib/fs-read-file"

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.csv

+3
Original file line numberDiff line numberDiff line change
@@ -2352,6 +2352,8 @@
23522352
"@stdlib/proxy-ctor","@stdlib/proxy/ctor"
23532353
"@stdlib/utils-push","@stdlib/utils/push"
23542354
"@stdlib/time-quarter-of-year","@stdlib/time/quarter-of-year"
2355+
"@stdlib/random-array-arcsine","@stdlib/random/array/arcsine"
2356+
"@stdlib/random-array-uniform","@stdlib/random/array/uniform"
23552357
"@stdlib/random-iter-arcsine","@stdlib/random/iter/arcsine"
23562358
"@stdlib/random-iter-bernoulli","@stdlib/random/iter/bernoulli"
23572359
"@stdlib/random-iter-beta","@stdlib/random/iter/beta"
@@ -2434,6 +2436,7 @@
24342436
"@stdlib/random-streams-triangular","@stdlib/random/streams/triangular"
24352437
"@stdlib/random-streams-uniform","@stdlib/random/streams/uniform"
24362438
"@stdlib/random-streams-weibull","@stdlib/random/streams/weibull"
2439+
"@stdlib/random-strided-arcsine","@stdlib/random/strided/arcsine"
24372440
"@stdlib/stats-ranks","@stdlib/stats/ranks"
24382441
"@stdlib/fs-read-dir","@stdlib/fs/read-dir"
24392442
"@stdlib/fs-read-file","@stdlib/fs/read-file"

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ alias2standalone,"var v = alias2standalone( 'base.sin' )\n"
1111
aliases,"var o = aliases()\no = aliases( '@stdlib/math/base/special' )\n"
1212
allocUnsafe,"var buf = allocUnsafe( 100 )\n"
1313
anans,"var arr = anans( 2 )\narr = anans( 2, 'float32' )\n"
14+
anansLike,"var x = new Float64Array( 2 );\nvar y = anansLike( x )\ny = anansLike( x, 'float32' )\n"
1415
anova1,"var x = [1, 3, 5, 2, 4, 6, 8, 7, 10, 11, 12, 15];\nvar f = [\n 'control', 'treatA', 'treatB', 'treatC', 'control',\n 'treatA', 'treatB', 'treatC', 'control', 'treatA', 'treatB', 'treatC'\n ];\nvar out = anova1( x, f )\n"
1516
ANSCOMBES_QUARTET,"var d = ANSCOMBES_QUARTET()\n"
1617
any,"var arr = [ 0, 0, 0, 0, 1 ];\nvar bool = any( arr )\n"

lib/node_modules/@stdlib/repl/code-blocks/data/data.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)