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 fdf2662 commit 29b392d
Show file tree
Hide file tree
Showing 48 changed files with 73 additions and 73 deletions.
2 changes: 1 addition & 1 deletion array/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import ns = require( './index' );

Expand Down
2 changes: 1 addition & 1 deletion base/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import ns = require( './index' );

Expand Down
2 changes: 1 addition & 1 deletion docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import ns = require( './index' );

Expand Down
2 changes: 1 addition & 1 deletion exponential/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ interface PRNGOptions {
/**
* Interface defining ndarray options.
*/
interface ndarrayOptions { // tslint:disable-line:class-name
interface ndarrayOptions {
/**
* Specifies whether an array is row-major (C-style) or column-major (Fortran-style). Default: 'row-major'.
*/
Expand Down
2 changes: 1 addition & 1 deletion iter/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import ns = require( './index' );

Expand Down
4 changes: 2 additions & 2 deletions streams/arcsine/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
2 changes: 1 addition & 1 deletion streams/bernoulli/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import RandomStream = require( './index' );

Expand Down
4 changes: 2 additions & 2 deletions streams/beta/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/betaprime/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/binomial/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 20, 0.3 ); // $ExpectType RandomStream
new RandomStream( 20, 0.3, {} ); // $ExpectType RandomStream
new RandomStream( 20, 0.3, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
2 changes: 1 addition & 1 deletion streams/box-muller/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */

import RandomStream = require( './index' );

Expand Down
4 changes: 2 additions & 2 deletions streams/cauchy/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
2 changes: 1 addition & 1 deletion streams/chi/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import RandomStream = require( './index' );

Expand Down
2 changes: 1 addition & 1 deletion streams/chisquare/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import RandomStream = require( './index' );

Expand Down
4 changes: 2 additions & 2 deletions streams/cosine/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/discrete-uniform/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2, 5 ); // $ExpectType RandomStream
new RandomStream( 2, 5, {} ); // $ExpectType RandomStream
new RandomStream( 2, 5, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
2 changes: 1 addition & 1 deletion streams/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import ns = require( './index' );

Expand Down
4 changes: 2 additions & 2 deletions streams/erlang/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
2 changes: 1 addition & 1 deletion streams/exponential/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import RandomStream = require( './index' );

Expand Down
4 changes: 2 additions & 2 deletions streams/f/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/frechet/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0, 3.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, 3.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, 3.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/gamma/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
2 changes: 1 addition & 1 deletion streams/geometric/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* tslint:disable:no-unused-expression */
/* eslint-disable @typescript-eslint/no-unused-expressions */

import RandomStream = require( './index' );

Expand Down
4 changes: 2 additions & 2 deletions streams/gumbel/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/hypergeometric/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 20, 10, 7 ); // $ExpectType RandomStream
new RandomStream( 20, 10, 7, {} ); // $ExpectType RandomStream
new RandomStream( 20, 10, 7, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
2 changes: 1 addition & 1 deletion streams/improved-ziggurat/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */

import RandomStream = require( './index' );

Expand Down
4 changes: 2 additions & 2 deletions streams/invgamma/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/kumaraswamy/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/laplace/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/levy/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
4 changes: 2 additions & 2 deletions streams/logistic/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import RandomStream = require( './index' );

// The constructor returns a stream...
{
// tslint:disable: no-unused-expression
/* eslint-disable @typescript-eslint/no-unused-expressions */
new RandomStream( 2.0, 5.0 ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, {} ); // $ExpectType RandomStream
new RandomStream( 2.0, 5.0, { 'iter': 10 } ); // $ExpectType RandomStream

// tslint:enable: no-unused-expression
/* eslint-enable @typescript-eslint/no-unused-expressions */
}

// The constructor is callable...
Expand Down
Loading

0 comments on commit 29b392d

Please sign in to comment.