Skip to content
Merged
Changes from all 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
30 changes: 6 additions & 24 deletions lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,7 @@ interface Namespace {
*
* // Perform reduction:
* var out = ns.any( x );
* // returns <ndarray>
*
* var v = out.get();
* // returns true
* // returns <ndarray>[ true ]
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
Expand Down Expand Up @@ -171,10 +168,7 @@ interface Namespace {
*
* // Perform reduction:
* var out = ns.any.assign( x, y );
* // returns <ndarray>
*
* var v = out.get();
* // returns true
* // returns <ndarray>[ true ]
*/
any: typeof any;

Expand Down Expand Up @@ -675,10 +669,7 @@ interface Namespace {
*
* // Perform reduction:
* var out = ns.countIf( x, predicate );
* // returns <ndarray>
*
* var v = out.get();
* // returns 5
* // returns <ndarray>[ 5 ]
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
Expand Down Expand Up @@ -711,10 +702,7 @@ interface Namespace {
*
* // Perform reduction:
* var out = ns.countIf.assign( x, y, predicate );
* // returns <ndarray>
*
* var v = out.get();
* // returns 5
* // returns <ndarray>[ 5 ]
*/
countIf: typeof countIf;

Expand Down Expand Up @@ -748,10 +736,7 @@ interface Namespace {
*
* // Perform reduction:
* var out = ns.countTruthy( x );
* // returns <ndarray>
*
* var v = out.get();
* // returns 5
* // returns <ndarray>[ 5 ]
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
Expand Down Expand Up @@ -780,10 +765,7 @@ interface Namespace {
*
* // Perform reduction:
* var out = ns.countTruthy.assign( x, y );
* // returns <ndarray>
*
* var v = out.get();
* // returns 5
* // returns <ndarray>[ 5 ]
*/
countTruthy: typeof countTruthy;

Expand Down
Loading