Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
'value': require( '@stdlib/random/discrete-uniform' ),
'type': 'Function',
'related': [
'@stdlib/random/uniform',
'@stdlib/random/discrete-uniform',
Comment thread
Planeshifter marked this conversation as resolved.
Outdated
'@stdlib/random/base/discrete-uniform',
'@stdlib/random/array/discrete-uniform',
'@stdlib/random/strided/discrete-uniform'
Expand Down Expand Up @@ -350,7 +350,7 @@
'@stdlib/random/base/negative-binomial',
'@stdlib/random/array/negative-binomial',
'@stdlib/random/strided/negative-binomial'
]

Check warning on line 353 in lib/node_modules/@stdlib/namespace/lib/namespace/random/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

File has too many lines (399). Maximum allowed is 300
});

ns.push({
Expand Down Expand Up @@ -440,7 +440,7 @@
'@stdlib/random/uniform',
Comment thread
Planeshifter marked this conversation as resolved.
Outdated
'@stdlib/random/base/uniform',
'@stdlib/random/array/uniform',
'@stdlib/random/strided/discrete-uniform'
'@stdlib/random/strided/uniform'
]
});

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/descriptor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The function accepts the following arguments:
- The returned object has the following properties:

- **dtype**: [data type][@stdlib/ndarray/dtypes].
- **buffer**: data buffer.
- **data**: data buffer.
- **shape**: array shape.
- **strides**: array strides.
- **offset**: index offset.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ declare function scalar2ndarray( value: number, dtype: Float32DataType, order: O
* // returns 'complex128'
*
* var buf = getData( x );
* // buf => <Complex128Array>[ 1.0, 2.0 ]
* // returns <Complex128Array>[ 1.0, 2.0 ]
*/
declare function scalar2ndarray( value: number | ComplexLike, dtype: Complex128DataType, order: Order ): complex128ndarray;

Expand Down Expand Up @@ -141,7 +141,7 @@ declare function scalar2ndarray( value: number | ComplexLike, dtype: Complex128D
* // returns 'complex64'
*
* var buf = getData( x );
* // buf => <Complex64Array>[ 1.0, 2.0 ]
* // returns <Complex64Array>[ 1.0, 2.0 ]
*/
declare function scalar2ndarray( value: number | ComplexLike, dtype: Complex64DataType, order: Order ): complex64ndarray;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
* // returns 'complex128'
*
* var buf = x.data;
* // buf => <Complex128Array>[ 1.0, 2.0 ]
* // returns <Complex128Array>[ 1.0, 2.0 ]
*/
declare function scalar2ndarray( value: number | ComplexLike, options: Complex128Options ): complex128ndarray;

Expand Down Expand Up @@ -276,7 +276,7 @@
* // returns 'complex64'
*
* var buf = x.data;
* // buf => <Complex64Array>[ 1.0, 2.0 ]
* // returns <Complex64Array>[ 1.0, 2.0 ]
*/
declare function scalar2ndarray( value: number | ComplexLike, options: Complex64Options ): complex64ndarray;

Expand Down Expand Up @@ -504,7 +504,7 @@
* var v = x.get();
* // returns 1.0
*/
declare function scalar2ndarray<T = any>( value: T, options?: Options ): genericndarray<T>;

Check warning on line 507 in lib/node_modules/@stdlib/ndarray/from-scalar/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type


// EXPORTS //
Expand Down