Skip to content

Commit 9f8c45c

Browse files
committed
Update namespace
1 parent 3768fa5 commit 9f8c45c

File tree

27 files changed

+69
-15
lines changed

27 files changed

+69
-15
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,6 +2445,7 @@ random.streams.weibull,"@stdlib/random/streams/weibull"
24452445
random.strided.arcsine,"@stdlib/random/strided/arcsine"
24462446
random.strided.beta,"@stdlib/random/strided/beta"
24472447
random.strided.discreteUniform,"@stdlib/random/strided/discrete-uniform"
2448+
random.strided.exponential,"@stdlib/random/strided/exponential"
24482449
random.strided.lognormal,"@stdlib/random/strided/lognormal"
24492450
random.strided.normal,"@stdlib/random/strided/normal"
24502451
random.strided.randu,"@stdlib/random/strided/randu"

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

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2355,7 +2355,7 @@ quarterOfYear,"dayOfYear"
23552355
random.array.arcsine,"base.random.arcsine,random.strided.arcsine"
23562356
random.array.beta,"base.random.beta,random.strided.beta"
23572357
random.array.discreteUniform,"random.array.uniform,base.random.discreteUniform,random.strided.discreteUniform"
2358-
random.array.exponential,"base.random.exponential"
2358+
random.array.exponential,"base.random.exponential,random.strided.exponential"
23592359
random.array.lognormal,"base.random.lognormal,random.strided.lognormal"
23602360
random.array.normal,"base.random.normal,random.strided.normal"
23612361
random.array.randu,"random.array.uniform,base.random.randu,random.strided.randu"
@@ -2445,6 +2445,7 @@ random.streams.weibull,"base.random.weibull,random.iterators.weibull"
24452445
random.strided.arcsine,"base.random.arcsine,random.array.arcsine"
24462446
random.strided.beta,"base.random.beta,random.array.beta"
24472447
random.strided.discreteUniform,"base.random.discreteUniform,random.array.discreteUniform,random.strided.uniform"
2448+
random.strided.exponential,"base.random.exponential,random.array.exponential"
24482449
random.strided.lognormal,"base.random.lognormal,random.array.lognormal"
24492450
random.strided.normal,"base.random.normal,random.array.normal"
24502451
random.strided.randu,"base.random.randu,random.array.randu,random.strided.uniform"

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,6 +2445,7 @@ random.streams.weibull,"@stdlib/random-streams-weibull"
24452445
random.strided.arcsine,"@stdlib/random-strided-arcsine"
24462446
random.strided.beta,"@stdlib/random-strided-beta"
24472447
random.strided.discreteUniform,"@stdlib/random-strided-discrete-uniform"
2448+
random.strided.exponential,"@stdlib/random-strided-exponential"
24482449
random.strided.lognormal,"@stdlib/random-strided-lognormal"
24492450
random.strided.normal,"@stdlib/random-strided-normal"
24502451
random.strided.randu,"@stdlib/random-strided-randu"

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

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

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,6 +2445,7 @@ random.streams.weibull
24452445
random.strided.arcsine
24462446
random.strided.beta
24472447
random.strided.discreteUniform
2448+
random.strided.exponential
24482449
random.strided.lognormal
24492450
random.strided.normal
24502451
random.strided.randu

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,18 @@ ns.push({
6363
]
6464
});
6565

66+
ns.push({
67+
'alias': 'random.strided.exponential',
68+
'path': '@stdlib/random/strided/exponential',
69+
'value': require( '@stdlib/random/strided/exponential' ),
70+
'type': 'Function',
71+
'related': [
72+
'@stdlib/random/exponential',
73+
'@stdlib/random/base/exponential',
74+
'@stdlib/random/array/exponential'
75+
]
76+
});
77+
6678
ns.push({
6779
'alias': 'random.strided.lognormal',
6880
'path': '@stdlib/random/strided/lognormal',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,6 +2445,7 @@
24452445
"@stdlib/random/strided/arcsine",random.strided.arcsine
24462446
"@stdlib/random/strided/beta",random.strided.beta
24472447
"@stdlib/random/strided/discrete-uniform",random.strided.discreteUniform
2448+
"@stdlib/random/strided/exponential",random.strided.exponential
24482449
"@stdlib/random/strided/lognormal",random.strided.lognormal
24492450
"@stdlib/random/strided/normal",random.strided.normal
24502451
"@stdlib/random/strided/randu",random.strided.randu

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

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2355,7 +2355,7 @@
23552355
"@stdlib/random/array/arcsine","@stdlib/random/base/arcsine,@stdlib/random/strided/arcsine"
23562356
"@stdlib/random/array/beta","@stdlib/random/base/beta,@stdlib/random/strided/beta"
23572357
"@stdlib/random/array/discrete-uniform","@stdlib/random/array/uniform,@stdlib/random/base/discrete-uniform,@stdlib/random/strided/discrete-uniform"
2358-
"@stdlib/random/array/exponential","@stdlib/random/base/exponential"
2358+
"@stdlib/random/array/exponential","@stdlib/random/base/exponential,@stdlib/random/strided/exponential"
23592359
"@stdlib/random/array/lognormal","@stdlib/random/base/lognormal,@stdlib/random/strided/lognormal"
23602360
"@stdlib/random/array/normal","@stdlib/random/base/normal,@stdlib/random/strided/normal"
23612361
"@stdlib/random/array/randu","@stdlib/random/array/uniform,@stdlib/random/base/randu,@stdlib/random/strided/randu"
@@ -2445,6 +2445,7 @@
24452445
"@stdlib/random/strided/arcsine","@stdlib/random/base/arcsine,@stdlib/random/array/arcsine"
24462446
"@stdlib/random/strided/beta","@stdlib/random/base/beta,@stdlib/random/array/beta"
24472447
"@stdlib/random/strided/discrete-uniform","@stdlib/random/base/discrete-uniform,@stdlib/random/array/discrete-uniform,@stdlib/random/strided/uniform"
2448+
"@stdlib/random/strided/exponential","@stdlib/random/base/exponential,@stdlib/random/array/exponential"
24482449
"@stdlib/random/strided/lognormal","@stdlib/random/base/lognormal,@stdlib/random/array/lognormal"
24492450
"@stdlib/random/strided/normal","@stdlib/random/base/normal,@stdlib/random/array/normal"
24502451
"@stdlib/random/strided/randu","@stdlib/random/base/randu,@stdlib/random/array/randu,@stdlib/random/strided/uniform"

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,6 +2445,7 @@
24452445
"@stdlib/random/strided/arcsine","@stdlib/random-strided-arcsine"
24462446
"@stdlib/random/strided/beta","@stdlib/random-strided-beta"
24472447
"@stdlib/random/strided/discrete-uniform","@stdlib/random-strided-discrete-uniform"
2448+
"@stdlib/random/strided/exponential","@stdlib/random-strided-exponential"
24482449
"@stdlib/random/strided/lognormal","@stdlib/random-strided-lognormal"
24492450
"@stdlib/random/strided/normal","@stdlib/random-strided-normal"
24502451
"@stdlib/random/strided/randu","@stdlib/random-strided-randu"

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,6 +2445,7 @@
24452445
"@stdlib/random-strided-arcsine","@stdlib/random/strided/arcsine"
24462446
"@stdlib/random-strided-beta","@stdlib/random/strided/beta"
24472447
"@stdlib/random-strided-discrete-uniform","@stdlib/random/strided/discrete-uniform"
2448+
"@stdlib/random-strided-exponential","@stdlib/random/strided/exponential"
24482449
"@stdlib/random-strided-lognormal","@stdlib/random/strided/lognormal"
24492450
"@stdlib/random-strided-normal","@stdlib/random/strided/normal"
24502451
"@stdlib/random-strided-randu","@stdlib/random/strided/randu"

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

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

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3775,6 +3775,14 @@ random.array.discreteUniform.seedLength,"var len = random.array.discreteUniform.
37753775
random.array.discreteUniform.state,"var out = random.array.discreteUniform( 3, -10, 10 )\nvar state = random.array.discreteUniform.state\nout = random.array.discreteUniform( 3, -10, 10 )\nout = random.array.discreteUniform( 3, -10, 10 )\nrandom.array.discreteUniform.state = state;\nout = random.array.discreteUniform( 3, -10, 10 )\n"
37763776
random.array.discreteUniform.stateLength,"var len = random.array.discreteUniform.stateLength;\n"
37773777
random.array.discreteUniform.byteLength,"var sz = random.array.discreteUniform.byteLength;\n"
3778+
random.array.exponential,"var out = random.array.exponential( 3, 2.0 )\n"
3779+
random.array.exponential.factory,"var fcn = random.array.exponential.factory();\nvar out = fcn( 3, 2.0 )\nfcn = random.array.exponential.factory( 2.0 );\nout = fcn( 3 )\n"
3780+
random.array.exponential.PRNG,"var prng = random.array.exponential.PRNG;\n"
3781+
random.array.exponential.seed,"var seed = random.array.exponential.seed;\n"
3782+
random.array.exponential.seedLength,"var len = random.array.exponential.seedLength;\n"
3783+
random.array.exponential.state,"var out = random.array.exponential( 3, 2.0 )\nvar state = random.array.exponential.state\nout = random.array.exponential( 3, 2.0 )\nout = random.array.exponential( 3, 2.0 )\nrandom.array.exponential.state = state;\nout = random.array.exponential( 3, 2.0 )\n"
3784+
random.array.exponential.stateLength,"var len = random.array.exponential.stateLength;\n"
3785+
random.array.exponential.byteLength,"var sz = random.array.exponential.byteLength;\n"
37783786
random.array.lognormal,"var out = random.array.lognormal( 3, 2.0, 5.0 )\n"
37793787
random.array.lognormal.factory,"var fcn = random.array.lognormal.factory();\nvar out = fcn( 3, 2.0, 5.0 )\nfcn = random.array.lognormal.factory( 2.0, 5.0 );\nout = fcn( 3 )\n"
37803788
random.array.lognormal.PRNG,"var prng = random.array.lognormal.PRNG;\n"

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

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

lib/node_modules/@stdlib/repl/help/data/data.csv

Lines changed: 2 additions & 0 deletions
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/help/data/data.json

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

lib/node_modules/@stdlib/repl/info/data/data.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3775,6 +3775,14 @@ random.array.discreteUniform.seedLength,"\nrandom.array.discreteUniform.seedLeng
37753775
random.array.discreteUniform.state,"\nrandom.array.discreteUniform.state\n Generator state.\n"
37763776
random.array.discreteUniform.stateLength,"\nrandom.array.discreteUniform.stateLength\n Length of generator state.\n"
37773777
random.array.discreteUniform.byteLength,"\nrandom.array.discreteUniform.byteLength\n Size (in bytes) of generator state.\n"
3778+
random.array.exponential,"\nrandom.array.exponential( len:integer, lambda:number[, options:Object] )\n Returns an array containing pseudorandom numbers drawn from an exponential\n distribution.\n"
3779+
random.array.exponential.factory,"\nrandom.array.exponential.factory( [lambda:number, ][options:Object] )\n Returns a function for creating arrays containing pseudorandom numbers drawn\n from an exponential distribution.\n"
3780+
random.array.exponential.PRNG,"\nrandom.array.exponential.PRNG\n Underlying pseudorandom number generator.\n"
3781+
random.array.exponential.seed,"\nrandom.array.exponential.seed\n Pseudorandom number generator seed.\n"
3782+
random.array.exponential.seedLength,"\nrandom.array.exponential.seedLength\n Length of generator seed.\n"
3783+
random.array.exponential.state,"\nrandom.array.exponential.state\n Generator state.\n"
3784+
random.array.exponential.stateLength,"\nrandom.array.exponential.stateLength\n Length of generator state.\n"
3785+
random.array.exponential.byteLength,"\nrandom.array.exponential.byteLength\n Size (in bytes) of generator state.\n"
37783786
random.array.lognormal,"\nrandom.array.lognormal( len:integer, mu:number, sigma:number[, options:Object] )\n Returns an array containing pseudorandom numbers drawn from a lognormal\n distribution.\n"
37793787
random.array.lognormal.factory,"\nrandom.array.lognormal.factory( [mu:number, sigma:number, ][options:Object] )\n Returns a function for creating arrays containing pseudorandom numbers drawn\n from a lognormal distribution.\n"
37803788
random.array.lognormal.PRNG,"\nrandom.array.lognormal.PRNG\n Underlying pseudorandom number generator.\n"

lib/node_modules/@stdlib/repl/info/data/data.json

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

lib/node_modules/@stdlib/repl/signature/data/data.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3812,6 +3812,14 @@ random.array.discreteUniform.seedLength,"random.array.discreteUniform.seedLength
38123812
random.array.discreteUniform.state,"random.array.discreteUniform.state"
38133813
random.array.discreteUniform.stateLength,"random.array.discreteUniform.stateLength"
38143814
random.array.discreteUniform.byteLength,"random.array.discreteUniform.byteLength"
3815+
random.array.exponential,"random.array.exponential( len, lambda[, options] )"
3816+
random.array.exponential.factory,"random.array.exponential.factory( [lambda, ][options] )"
3817+
random.array.exponential.PRNG,"random.array.exponential.PRNG"
3818+
random.array.exponential.seed,"random.array.exponential.seed"
3819+
random.array.exponential.seedLength,"random.array.exponential.seedLength"
3820+
random.array.exponential.state,"random.array.exponential.state"
3821+
random.array.exponential.stateLength,"random.array.exponential.stateLength"
3822+
random.array.exponential.byteLength,"random.array.exponential.byteLength"
38153823
random.array.lognormal,"random.array.lognormal( len, mu, sigma[, options] )"
38163824
random.array.lognormal.factory,"random.array.lognormal.factory( [mu, sigma, ][options] )"
38173825
random.array.lognormal.PRNG,"random.array.lognormal.PRNG"

lib/node_modules/@stdlib/repl/signature/data/data.json

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

lib/node_modules/@stdlib/repl/typed-signature/data/data.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3812,6 +3812,14 @@ random.array.discreteUniform.seedLength,"random.array.discreteUniform.seedLength
38123812
random.array.discreteUniform.state,"random.array.discreteUniform.state"
38133813
random.array.discreteUniform.stateLength,"random.array.discreteUniform.stateLength"
38143814
random.array.discreteUniform.byteLength,"random.array.discreteUniform.byteLength"
3815+
random.array.exponential,"random.array.exponential( len:integer, lambda:number[, options:Object] )"
3816+
random.array.exponential.factory,"random.array.exponential.factory( [lambda:number, ][options:Object] )"
3817+
random.array.exponential.PRNG,"random.array.exponential.PRNG"
3818+
random.array.exponential.seed,"random.array.exponential.seed"
3819+
random.array.exponential.seedLength,"random.array.exponential.seedLength"
3820+
random.array.exponential.state,"random.array.exponential.state"
3821+
random.array.exponential.stateLength,"random.array.exponential.stateLength"
3822+
random.array.exponential.byteLength,"random.array.exponential.byteLength"
38153823
random.array.lognormal,"random.array.lognormal( len:integer, mu:number, sigma:number[, options:Object] )"
38163824
random.array.lognormal.factory,"random.array.lognormal.factory( [mu:number, sigma:number, ][options:Object] )"
38173825
random.array.lognormal.PRNG,"random.array.lognormal.PRNG"

lib/node_modules/@stdlib/repl/typed-signature/data/data.json

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

0 commit comments

Comments
 (0)