Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 12, 2023
1 parent d1e1af9 commit 1e7f593
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

2 changes: 1 addition & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Ognjen Jevremović <[email protected]>
Philipp Burckhardt <[email protected]>
Pranav Goswami <[email protected]>
Ricky Reusser <[email protected]>
Robert Gislason <[email protected]>
Roman Stetsyk <[email protected]>
Ryan Seal <[email protected]>
Seyyed Parsa Neshaei <[email protected]>
Expand All @@ -37,4 +38,3 @@ Stephannie Jiménez Gacha <[email protected]>
Yernar Yergaziyev <[email protected]>
orimiles5 <[email protected]>
rei2hu <[email protected]>
Robert Gislason <[email protected]>
18 changes: 9 additions & 9 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,37 +114,37 @@ declare class RandomStream extends Readable {
/**
* Destruction state.
*/
private readonly _destroyed: boolean; // tslint:disable-line: variable-name
private readonly _destroyed: boolean;

/**
* Flag indicating whether a stream is operating in object mode.
*/
private readonly _objectMode: boolean; // tslint:disable-line: variable-name
private readonly _objectMode: boolean;

/**
* Data separator.
*/
private readonly _sep: string; // tslint:disable-line: variable-name
private readonly _sep: string;

/**
* Total number of iterations.
*/
private readonly _iter: number; // tslint:disable-line: variable-name
private readonly _iter: number;

/**
* Number of iterations after which to emit the underlying PRNG state.
*/
private readonly _siter: number; // tslint:disable-line: variable-name
private readonly _siter: number;

/**
* Iteration counter.
*/
private _i: number; // tslint:disable-line: variable-name
private _i: number;

/**
* Pseudorandom number generator for generating uniformly distributed pseudorandom numbers.
*/
private readonly _prng: random.PRNG; // tslint:disable-line: variable-name
private readonly _prng: random.PRNG;

/**
* Underlying PRNG.
Expand Down Expand Up @@ -181,7 +181,7 @@ declare class RandomStream extends Readable {
*
* @param size - number (of bytes) to read
*/
_read( size: number ): void; // tslint:disable-line: variable-name
_read( size: number ): void;

/**
* Gracefully destroys a stream, providing backward compatibility.
Expand Down Expand Up @@ -284,7 +284,7 @@ interface Constructor {
* streams.push( createStream() );
* }
*/
factory( a: number, b: number, options?: Options ): ( ...args: Array<any> ) => RandomStream; // tslint:disable-line: max-line-length
factory( a: number, b: number, options?: Options ): ( ...args: Array<any> ) => RandomStream;

/**
* Returns a function for creating readable streams which generate pseudorandom numbers drawn from a uniform distribution.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"@stdlib/random-base-uniform": "^0.1.0",
"@stdlib/streams-node-stdout": "^0.1.1",
"@stdlib/string-format": "^0.1.1",
"@stdlib/types": "^0.1.0",
"@stdlib/types": "^0.2.0",
"@stdlib/utils-define-nonenumerable-property": "^0.1.1",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1",
"@stdlib/utils-define-read-only-accessor": "^0.1.1",
Expand All @@ -80,7 +80,7 @@
"@stdlib/assert-is-buffer": "^0.1.1",
"@stdlib/assert-is-uint32array": "^0.1.1",
"@stdlib/assert-is-windows": "^0.1.1",
"@stdlib/bench": "^0.1.0",
"@stdlib/bench": "^0.2.0",
"@stdlib/constants-uint32-max": "^0.1.1",
"@stdlib/fs-exists": "^0.1.1",
"@stdlib/fs-unlink": "^0.1.1",
Expand Down

0 comments on commit 1e7f593

Please sign in to comment.