Skip to content

Commit ce3071d

Browse files
committed
Update namespace
1 parent 4364575 commit ce3071d

File tree

27 files changed

+115
-21
lines changed

27 files changed

+115
-21
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,7 @@ random.streams.triangular,"@stdlib/random/streams/triangular"
24372437
random.streams.uniform,"@stdlib/random/streams/uniform"
24382438
random.streams.weibull,"@stdlib/random/streams/weibull"
24392439
random.strided.arcsine,"@stdlib/random/strided/arcsine"
2440+
random.strided.uniform,"@stdlib/random/strided/uniform"
24402441
ranks,"@stdlib/stats/ranks"
24412442
readDir,"@stdlib/fs/read-dir"
24422443
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

+2-1
Original file line numberDiff line numberDiff line change
@@ -2353,7 +2353,7 @@ Proxy,""
23532353
push,"pop,shift,unshift"
23542354
quarterOfYear,"dayOfYear"
23552355
random.array.arcsine,"base.random.arcsine,random.strided.arcsine"
2356-
random.array.uniform,"base.random.uniform"
2356+
random.array.uniform,"base.random.uniform,random.strided.uniform"
23572357
random.iterators.arcsine,"base.random.arcsine"
23582358
random.iterators.bernoulli,"base.random.bernoulli"
23592359
random.iterators.beta,"base.random.beta"
@@ -2437,6 +2437,7 @@ random.streams.triangular,"base.random.triangular,random.iterators.triangular"
24372437
random.streams.uniform,"base.random.uniform,random.iterators.uniform"
24382438
random.streams.weibull,"base.random.weibull,random.iterators.weibull"
24392439
random.strided.arcsine,"base.random.arcsine,random.array.arcsine"
2440+
random.strided.uniform,"base.random.uniform,random.array.uniform"
24402441
ranks,""
24412442
readDir,"exists,readFile"
24422443
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

+1
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,7 @@ random.streams.triangular,"@stdlib/random-streams-triangular"
24372437
random.streams.uniform,"@stdlib/random-streams-uniform"
24382438
random.streams.weibull,"@stdlib/random-streams-weibull"
24392439
random.strided.arcsine,"@stdlib/random-strided-arcsine"
2440+
random.strided.uniform,"@stdlib/random-strided-uniform"
24402441
ranks,"@stdlib/stats-ranks"
24412442
readDir,"@stdlib/fs-read-dir"
24422443
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

+1
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,7 @@ random.streams.triangular
24372437
random.streams.uniform
24382438
random.streams.weibull
24392439
random.strided.arcsine
2440+
random.strided.uniform
24402441
ranks
24412442
readDir
24422443
readFile

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

+12
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,18 @@ ns.push({
3838
]
3939
});
4040

41+
ns.push({
42+
'alias': 'random.strided.uniform',
43+
'path': '@stdlib/random/strided/uniform',
44+
'value': require( '@stdlib/random/strided/uniform' ),
45+
'type': 'Function',
46+
'related': [
47+
'@stdlib/random/uniform',
48+
'@stdlib/random/base/uniform',
49+
'@stdlib/random/array/uniform'
50+
]
51+
});
52+
4153

4254
// EXPORTS //
4355

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

+1
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,7 @@
24372437
"@stdlib/random/streams/uniform",random.streams.uniform
24382438
"@stdlib/random/streams/weibull",random.streams.weibull
24392439
"@stdlib/random/strided/arcsine",random.strided.arcsine
2440+
"@stdlib/random/strided/uniform",random.strided.uniform
24402441
"@stdlib/stats/ranks",ranks
24412442
"@stdlib/fs/read-dir",readDir
24422443
"@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

+2-1
Original file line numberDiff line numberDiff line change
@@ -2353,7 +2353,7 @@
23532353
"@stdlib/utils/push","@stdlib/utils/pop,@stdlib/utils/shift,@stdlib/utils/unshift"
23542354
"@stdlib/time/quarter-of-year","@stdlib/time/day-of-year"
23552355
"@stdlib/random/array/arcsine","@stdlib/random/base/arcsine,@stdlib/random/strided/arcsine"
2356-
"@stdlib/random/array/uniform","@stdlib/random/base/uniform"
2356+
"@stdlib/random/array/uniform","@stdlib/random/base/uniform,@stdlib/random/strided/uniform"
23572357
"@stdlib/random/iter/arcsine","@stdlib/random/base/arcsine"
23582358
"@stdlib/random/iter/bernoulli","@stdlib/random/base/bernoulli"
23592359
"@stdlib/random/iter/beta","@stdlib/random/base/beta"
@@ -2437,6 +2437,7 @@
24372437
"@stdlib/random/streams/uniform","@stdlib/random/base/uniform,@stdlib/random/iter/uniform"
24382438
"@stdlib/random/streams/weibull","@stdlib/random/base/weibull,@stdlib/random/iter/weibull"
24392439
"@stdlib/random/strided/arcsine","@stdlib/random/base/arcsine,@stdlib/random/array/arcsine"
2440+
"@stdlib/random/strided/uniform","@stdlib/random/base/uniform,@stdlib/random/array/uniform"
24402441
"@stdlib/stats/ranks",""
24412442
"@stdlib/fs/read-dir","@stdlib/fs/exists,@stdlib/fs/read-file"
24422443
"@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

+1
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,7 @@
24372437
"@stdlib/random/streams/uniform","@stdlib/random-streams-uniform"
24382438
"@stdlib/random/streams/weibull","@stdlib/random-streams-weibull"
24392439
"@stdlib/random/strided/arcsine","@stdlib/random-strided-arcsine"
2440+
"@stdlib/random/strided/uniform","@stdlib/random-strided-uniform"
24402441
"@stdlib/stats/ranks","@stdlib/stats-ranks"
24412442
"@stdlib/fs/read-dir","@stdlib/fs-read-dir"
24422443
"@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

+1
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,7 @@
24372437
"@stdlib/random-streams-uniform","@stdlib/random/streams/uniform"
24382438
"@stdlib/random-streams-weibull","@stdlib/random/streams/weibull"
24392439
"@stdlib/random-strided-arcsine","@stdlib/random/strided/arcsine"
2440+
"@stdlib/random-strided-uniform","@stdlib/random/strided/uniform"
24402441
"@stdlib/stats-ranks","@stdlib/stats/ranks"
24412442
"@stdlib/fs-read-dir","@stdlib/fs/read-dir"
24422443
"@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

+18
Original file line numberDiff line numberDiff line change
@@ -3751,6 +3751,22 @@ Proxy,"function get( obj, prop ) { return obj[ prop ] * 2.0 };\nvar h = { 'get':
37513751
Proxy.revocable,"function get( obj, prop ) { return obj[ prop ] * 2.0 };\nvar h = { 'get': get };\nvar p = Proxy.revocable( {}, h );\np.proxy.a = 3.14;\np.proxy.a\np.revoke();\n"
37523752
push,"var arr = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];\narr = push( arr, 6.0, 7.0 )\narr = new Float64Array( [ 1.0, 2.0 ] );\narr = push( arr, 3.0, 4.0 )\narr = { 'length': 0 };\narr = push( arr, 1.0, 2.0 )\n"
37533753
quarterOfYear,"var q = quarterOfYear( new Date() )\nq = quarterOfYear( 4 )\nq = quarterOfYear( 'June' )\nq = quarterOfYear( 'April' )\nq = quarterOfYear( 'apr' )\n"
3754+
random.array.arcsine,"var out = random.array.arcsine( 3, 2.0, 5.0 )\n"
3755+
random.array.arcsine.factory,"var fcn = random.array.arcsine.factory();\nvar out = fcn( 3, 2.0, 5.0 )\nfcn = random.array.arcsine.factory( 2.0, 5.0 );\nout = fcn( 3 )\n"
3756+
random.array.arcsine.PRNG,"var prng = random.array.arcsine.PRNG;\n"
3757+
random.array.arcsine.seed,"var seed = random.array.arcsine.seed;\n"
3758+
random.array.arcsine.seedLength,"var len = random.array.arcsine.seedLength;\n"
3759+
random.array.arcsine.state,"var out = random.array.arcsine( 3, 2.0, 5.0 )\nvar state = random.array.arcsine.state\nout = random.array.arcsine( 3, 2.0, 5.0 )\nout = random.array.arcsine( 3, 2.0, 5.0 )\nrandom.array.arcsine.state = state;\nout = random.array.arcsine( 3, 2.0, 5.0 )\n"
3760+
random.array.arcsine.stateLength,"var len = random.array.arcsine.stateLength;\n"
3761+
random.array.arcsine.byteLength,"var sz = random.array.arcsine.byteLength;\n"
3762+
random.array.uniform,"var out = random.array.uniform( 3, 2.0, 5.0 )\n"
3763+
random.array.uniform.factory,"var fcn = random.array.uniform.factory();\nvar out = fcn( 3, 2.0, 5.0 )\nfcn = random.array.uniform.factory( 2.0, 5.0 );\nout = fcn( 3 )\n"
3764+
random.array.uniform.PRNG,"var prng = random.array.uniform.PRNG;\n"
3765+
random.array.uniform.seed,"var seed = random.array.uniform.seed;\n"
3766+
random.array.uniform.seedLength,"var len = random.array.uniform.seedLength;\n"
3767+
random.array.uniform.state,"var out = random.array.uniform( 3, 2.0, 5.0 )\nvar state = random.array.uniform.state\nout = random.array.uniform( 3, 2.0, 5.0 )\nout = random.array.uniform( 3, 2.0, 5.0 )\nrandom.array.uniform.state = state;\nout = random.array.uniform( 3, 2.0, 5.0 )\n"
3768+
random.array.uniform.stateLength,"var len = random.array.uniform.stateLength;\n"
3769+
random.array.uniform.byteLength,"var sz = random.array.uniform.byteLength;\n"
37543770
random.iterators.arcsine,"var it = random.iterators.arcsine( 0.0, 1.0 );\nvar r = it.next().value\nr = it.next().value\n"
37553771
random.iterators.bernoulli,"var it = random.iterators.bernoulli( 0.3 );\nvar r = it.next().value\nr = it.next().value\n"
37563772
random.iterators.beta,"var it = random.iterators.beta( 1.0, 1.0 );\nvar r = it.next().value\nr = it.next().value\n"
@@ -3915,6 +3931,8 @@ random.streams.uniform.objectMode,"function fcn( v ) { console.log( v ); };\nvar
39153931
random.streams.weibull,"function fcn( chunk ) { console.log( chunk.toString() ); };\nvar opts = { 'iter': 10 };\nvar s = random.streams.weibull( 2.0, 5.0, opts );\nvar o = inspectSinkStream( fcn );\ns.pipe( o );\n"
39163932
random.streams.weibull.factory,"var opts = { 'objectMode': true, 'highWaterMark': 64 };\nvar createStream = random.streams.weibull.factory( opts );\n"
39173933
random.streams.weibull.objectMode,"function fcn( v ) { console.log( v ); };\nvar opts = { 'iter': 10 };\nvar s = random.streams.weibull.objectMode( 2.0, 5.0, opts );\nvar o = inspectSinkStream.objectMode( fcn );\ns.pipe( o );\n"
3934+
random.strided.arcsine,"var a = linspace( 0.0, 1.0, 5 );\nvar b = linspace( 2.0, 5.0, 5 );\nvar out = azeros( 5, 'generic' );\nrandom.strided.arcsine( a.length, a, 1, b, 1, out, 1 )\na = linspace( 0.0, 1.0, 6 );\nb = linspace( 2.0, 5.0, 6 );\nout = azeros( 6, 'generic' );\nrandom.strided.arcsine( 3, a, -2, b, 1, out, 1 )\n"
3935+
random.strided.arcsine.ndarray,"var a = linspace( 0.0, 1.0, 5 );\nvar b = linspace( 2.0, 5.0, 5 );\nvar out = azeros( 5, 'generic' );\nrandom.strided.arcsine.ndarray( a.length, a, 1, 0, b, 1, 0, out, 1, 0 )\na = linspace( 0.0, 1.0, 6 );\nb = linspace( 2.0, 5.0, 6 );\nout = azeros( 6, 'generic' );\nrandom.strided.arcsine.ndarray( 3, a, 2, 1, b, -1, b.length-1, out, 1, 0 )\n"
39183936
ranks,"var arr = [ 1.1, 2.0, 3.5, 0.0, 2.4 ] ;\nvar out = ranks( arr )\narr = [ 2, 2, 1, 4, 3 ];\nout = ranks( arr )\narr = [ null, 2, 2, 1, 4, 3, NaN, NaN ];\nout = ranks( arr )\n"
39193937
readDir,"function onRead( error, data ) {\n if ( error ) {\n console.error( error.message );\n } else {\n console.log( data );\n }\n };\nreadDir( './beep/boop', onRead );\n"
39203938
readDir.sync,"var out = readDir.sync( './beep/boop' );\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)