Skip to content

Commit 51790b5

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents f9c509e + 5f1e19e commit 51790b5

29 files changed

Lines changed: 6227 additions & 0 deletions

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,17 @@ ns.push({
763763
]
764764
});
765765

766+
ns.push({
767+
'alias': 'random.streams.pareto1',
768+
'path': '@stdlib/random/streams/pareto-type1',
769+
'value': require( '@stdlib/random/streams/pareto-type1' ),
770+
'type': 'Function',
771+
'related': [
772+
'@stdlib/random/base/pareto-type1',
773+
'@stdlib/random/iter/pareto-type1'
774+
]
775+
});
776+
766777
ns.push({
767778
'alias': 'random.streams.poisson',
768779
'path': '@stdlib/random/streams/poisson',

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,15 @@ setReadOnly( ns, 'mt19937', require( '@stdlib/random/streams/mt19937' ) );
279279
*/
280280
setReadOnly( ns, 'normal', require( '@stdlib/random/streams/normal' ) );
281281

282+
/**
283+
* @name pareto1
284+
* @memberof ns
285+
* @readonly
286+
* @type {Function}
287+
* @see {@link module:@stdlib/random/streams/pareto-type1}
288+
*/
289+
setReadOnly( ns, 'pareto1', require( '@stdlib/random/streams/pareto-type1' ) );
290+
282291
/**
283292
* @name poisson
284293
* @memberof ns

0 commit comments

Comments
 (0)