You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts
+3-9Lines changed: 3 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -606,10 +606,7 @@ interface Namespace {
606
606
*
607
607
* // Perform reduction:
608
608
* var out = ns.countFalsy( x );
609
-
* // returns <ndarray>
610
-
*
611
-
* var v = out.get();
612
-
* // returns 1
609
+
* // returns <ndarray>[ 1 ]
613
610
*
614
611
* @example
615
612
* var Float64Array = require( '@stdlib/array/float64' );
@@ -638,10 +635,7 @@ interface Namespace {
638
635
*
639
636
* // Perform reduction:
640
637
* var out = ns.countFalsy.assign( x, y );
641
-
* // returns <ndarray>
642
-
*
643
-
* var v = out.get();
644
-
* // returns 1
638
+
* // returns <ndarray>[ 1 ]
645
639
*/
646
640
countFalsy: typeofcountFalsy;
647
641
@@ -1285,7 +1279,7 @@ interface Namespace {
1285
1279
* @param options - function options
1286
1280
* @param options.dims - list of dimensions over which to perform a reduction
1287
1281
* @param options.keepdims - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions (default: false)
0 commit comments