Skip to content

Commit 6b195d7

Browse files
committed
Update namespace
1 parent 9e2ddda commit 6b195d7

File tree

3 files changed

+13
-3
lines changed
  • lib/node_modules/@stdlib

3 files changed

+13
-3
lines changed

lib/node_modules/@stdlib/namespace/lib/namespace/b.js

+8
Original file line numberDiff line numberDiff line change
@@ -5338,6 +5338,14 @@ ns.push({
53385338
'related': []
53395339
});
53405340

5341+
ns.push({
5342+
'alias': 'base.random.discreteUniform',
5343+
'path': '@stdlib/math/base/random/discrete-uniform',
5344+
'value': require( '@stdlib/math/base/random/discrete-uniform' ),
5345+
'type': 'Function',
5346+
'related': []
5347+
});
5348+
53415349
ns.push({
53425350
'alias': 'base.random.erlang',
53435351
'path': '@stdlib/math/base/random/erlang',

lib/node_modules/@stdlib/repl/code-blocks/lib/db.js

+1
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,7 @@ module.exports = {
613613
"base.random.chi": "r = base.random.chi( 2 );\n",
614614
"base.random.chisquare": "r = base.random.chisquare( 2 );\n",
615615
"base.random.cosine": "r = base.random.cosine( 2.0, 5.0 );\n",
616+
"base.random.discreteUniform": "r = base.random.discreteUniform( 2, 50 );\n",
616617
"base.random.erlang": "r = base.random.erlang( 2, 5.0 );\n",
617618
"base.random.exponential": "r = base.random.exponential( 7.9 );\n",
618619
"base.random.f": "r = base.random.f( 2.0, 5.0 );\n",

0 commit comments

Comments
 (0)