@@ -100,7 +100,7 @@ interface Options {
100100} 
101101
102102/** 
103- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
103+ * Flattens  an ndarray according to  a callback function . 
104104* 
105105* @param  x - input ndarray 
106106* @param  fcn - callback function 
@@ -133,7 +133,7 @@ interface Options {
133133declare  function  flattenBy < W  =  unknown > (  x : float64ndarray ,  fcn : Callback < number ,  float64ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  float64ndarray ,  number ,  W > >  ) : float64ndarray ; 
134134
135135/** 
136- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
136+ * Flattens  an ndarray according to  a callback function . 
137137* 
138138* @param  x - input ndarray 
139139* @param  fcn - callback function 
@@ -166,7 +166,7 @@ declare function flattenBy<W = unknown>( x: float64ndarray, fcn: Callback<number
166166declare  function  flattenBy < W  =  unknown > (  x : float32ndarray ,  fcn : Callback < number ,  float32ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  float32ndarray ,  number ,  W > >  ) : float32ndarray ; 
167167
168168/** 
169- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
169+ * Flattens  an ndarray according to  a callback function . 
170170* 
171171* @param  x - input ndarray 
172172* @param  fcn - callback function 
@@ -196,7 +196,7 @@ declare function flattenBy<W = unknown>( x: float32ndarray, fcn: Callback<number
196196declare  function  flattenBy < W  =  unknown > (  x : complex64ndarray ,  fcn : Callback < Complex64 ,  complex64ndarray ,  ComplexLike ,  W > ,  thisArg ?: ThisParameterType < Callback < Complex64 ,  complex64ndarray ,  ComplexLike ,  W > >  ) : complex64ndarray ; 
197197
198198/** 
199- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
199+ * Flattens  an ndarray according to  a callback function . 
200200* 
201201* @param  x - input ndarray 
202202* @param  fcn - callback function 
@@ -226,7 +226,7 @@ declare function flattenBy<W = unknown>( x: complex64ndarray, fcn: Callback<Comp
226226declare  function  flattenBy < W  =  unknown > (  x : complex128ndarray ,  fcn : Callback < Complex128 ,  complex128ndarray ,  ComplexLike ,  W > ,  thisArg ?: ThisParameterType < Callback < Complex128 ,  complex128ndarray ,  ComplexLike ,  W > >  ) : complex128ndarray ; 
227227
228228/** 
229- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
229+ * Flattens  an ndarray according to  a callback function . 
230230* 
231231* @param  x - input ndarray 
232232* @param  fcn - callback function 
@@ -259,7 +259,7 @@ declare function flattenBy<W = unknown>( x: complex128ndarray, fcn: Callback<Com
259259declare  function  flattenBy < W  =  unknown > (  x : int32ndarray ,  fcn : Callback < number ,  int32ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  int32ndarray ,  number ,  W > >  ) : int32ndarray ; 
260260
261261/** 
262- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
262+ * Flattens  an ndarray according to  a callback function . 
263263* 
264264* @param  x - input ndarray 
265265* @param  fcn - callback function 
@@ -292,7 +292,7 @@ declare function flattenBy<W = unknown>( x: int32ndarray, fcn: Callback<number,
292292declare  function  flattenBy < W  =  unknown > (  x : int16ndarray ,  fcn : Callback < number ,  int16ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  int16ndarray ,  number ,  W > >  ) : int16ndarray ; 
293293
294294/** 
295- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
295+ * Flattens  an ndarray according to  a callback function . 
296296* 
297297* @param  x - input ndarray 
298298* @param  fcn - callback function 
@@ -325,7 +325,7 @@ declare function flattenBy<W = unknown>( x: int16ndarray, fcn: Callback<number,
325325declare  function  flattenBy < W  =  unknown > (  x : int8ndarray ,  fcn : Callback < number ,  int8ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  int8ndarray ,  number ,  W > >  ) : int8ndarray ; 
326326
327327/** 
328- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
328+ * Flattens  an ndarray according to  a callback function . 
329329* 
330330* @param  x - input ndarray 
331331* @param  fcn - callback function 
@@ -358,7 +358,7 @@ declare function flattenBy<W = unknown>( x: int8ndarray, fcn: Callback<number, i
358358declare  function  flattenBy < W  =  unknown > (  x : uint32ndarray ,  fcn : Callback < number ,  uint32ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  uint32ndarray ,  number ,  W > >  ) : uint32ndarray ; 
359359
360360/** 
361- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
361+ * Flattens  an ndarray according to  a callback function . 
362362* 
363363* @param  x - input ndarray 
364364* @param  fcn - callback function 
@@ -391,7 +391,7 @@ declare function flattenBy<W = unknown>( x: uint32ndarray, fcn: Callback<number,
391391declare  function  flattenBy < W  =  unknown > (  x : uint16ndarray ,  fcn : Callback < number ,  uint16ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  uint16ndarray ,  number ,  W > >  ) : uint16ndarray ; 
392392
393393/** 
394- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
394+ * Flattens  an ndarray according to  a callback function . 
395395* 
396396* @param  x - input ndarray 
397397* @param  fcn - callback function 
@@ -424,7 +424,7 @@ declare function flattenBy<W = unknown>( x: uint16ndarray, fcn: Callback<number,
424424declare  function  flattenBy < W  =  unknown > (  x : uint8ndarray ,  fcn : Callback < number ,  uint8ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  uint8ndarray ,  number ,  W > >  ) : uint8ndarray ; 
425425
426426/** 
427- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
427+ * Flattens  an ndarray according to  a callback function . 
428428* 
429429* @param  x - input ndarray 
430430* @param  fcn - callback function 
@@ -457,7 +457,7 @@ declare function flattenBy<W = unknown>( x: uint8ndarray, fcn: Callback<number,
457457declare  function  flattenBy < W  =  unknown > (  x : uint8cndarray ,  fcn : Callback < number ,  uint8cndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  uint8cndarray ,  number ,  W > >  ) : uint8cndarray ; 
458458
459459/** 
460- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
460+ * Flattens  an ndarray according to  a callback function . 
461461* 
462462* @param  x - input ndarray 
463463* @param  fcn - callback function 
@@ -490,7 +490,7 @@ declare function flattenBy<W = unknown>( x: uint8cndarray, fcn: Callback<number,
490490declare  function  flattenBy < W  =  unknown > (  x : boolndarray ,  fcn : Callback < boolean ,  boolndarray ,  boolean ,  W > ,  thisArg ?: ThisParameterType < Callback < boolean ,  boolndarray ,  boolean ,  W > >  ) : boolndarray ; 
491491
492492/** 
493- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
493+ * Flattens  an ndarray according to  a callback function . 
494494* 
495495* @param  x - input ndarray 
496496* @param  fcn - callback function 
@@ -522,7 +522,7 @@ declare function flattenBy<W = unknown>( x: boolndarray, fcn: Callback<boolean,
522522declare  function  flattenBy < T  =  unknown ,  V  =  unknown ,  W  =  unknown > (  x : genericndarray < T > ,  fcn : Callback < T ,  genericndarray < T > ,  V ,  W > ,  thisArg ?: ThisParameterType < Callback < T ,  genericndarray < T > ,  V ,  W > >  ) : genericndarray < V > ; 
523523
524524/** 
525- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
525+ * Flattens  an ndarray according to  a callback function . 
526526* 
527527* @param  x - input ndarray 
528528* @param  options - function options 
@@ -562,7 +562,7 @@ declare function flattenBy<T = unknown, V = unknown, W = unknown>( x: genericnda
562562declare  function  flattenBy < W  =  unknown > (  x : float64ndarray ,  options : Options ,  fcn : Callback < number ,  float64ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  float64ndarray ,  number ,  W > >  ) : float64ndarray ; 
563563
564564/** 
565- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
565+ * Flattens  an ndarray according to  a callback function . 
566566* 
567567* @param  x - input ndarray 
568568* @param  options - function options 
@@ -602,7 +602,7 @@ declare function flattenBy<W = unknown>( x: float64ndarray, options: Options, fc
602602declare  function  flattenBy < W  =  unknown > (  x : float32ndarray ,  options : Options ,  fcn : Callback < number ,  float32ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  float32ndarray ,  number ,  W > >  ) : float32ndarray ; 
603603
604604/** 
605- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
605+ * Flattens  an ndarray according to  a callback function . 
606606* 
607607* @param  x - input ndarray 
608608* @param  options - function options 
@@ -639,7 +639,7 @@ declare function flattenBy<W = unknown>( x: float32ndarray, options: Options, fc
639639declare  function  flattenBy < W  =  unknown > (  x : complex64ndarray ,  options : Options ,  fcn : Callback < Complex64 ,  complex64ndarray ,  ComplexLike ,  W > ,  thisArg ?: ThisParameterType < Callback < Complex64 ,  complex64ndarray ,  ComplexLike ,  W > >  ) : complex64ndarray ; 
640640
641641/** 
642- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
642+ * Flattens  an ndarray according to  a callback function . 
643643* 
644644* @param  x - input ndarray 
645645* @param  options - function options 
@@ -676,7 +676,7 @@ declare function flattenBy<W = unknown>( x: complex64ndarray, options: Options,
676676declare  function  flattenBy < W  =  unknown > (  x : complex128ndarray ,  options : Options ,  fcn : Callback < Complex128 ,  complex128ndarray ,  ComplexLike ,  W > ,  thisArg ?: ThisParameterType < Callback < Complex128 ,  complex128ndarray ,  ComplexLike ,  W > >  ) : complex128ndarray ; 
677677
678678/** 
679- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
679+ * Flattens  an ndarray according to  a callback function . 
680680* 
681681* @param  x - input ndarray 
682682* @param  options - function options 
@@ -716,7 +716,7 @@ declare function flattenBy<W = unknown>( x: complex128ndarray, options: Options,
716716declare  function  flattenBy < W  =  unknown > (  x : int32ndarray ,  options : Options ,  fcn : Callback < number ,  int32ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  int32ndarray ,  number ,  W > >  ) : int32ndarray ; 
717717
718718/** 
719- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
719+ * Flattens  an ndarray according to  a callback function . 
720720* 
721721* @param  x - input ndarray 
722722* @param  options - function options 
@@ -756,7 +756,7 @@ declare function flattenBy<W = unknown>( x: int32ndarray, options: Options, fcn:
756756declare  function  flattenBy < W  =  unknown > (  x : int16ndarray ,  options : Options ,  fcn : Callback < number ,  int16ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  int16ndarray ,  number ,  W > >  ) : int16ndarray ; 
757757
758758/** 
759- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
759+ * Flattens  an ndarray according to  a callback function . 
760760* 
761761* @param  x - input ndarray 
762762* @param  options - function options 
@@ -796,7 +796,7 @@ declare function flattenBy<W = unknown>( x: int16ndarray, options: Options, fcn:
796796declare  function  flattenBy < W  =  unknown > (  x : int8ndarray ,  options : Options ,  fcn : Callback < number ,  int8ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  int8ndarray ,  number ,  W > >  ) : int8ndarray ; 
797797
798798/** 
799- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
799+ * Flattens  an ndarray according to  a callback function . 
800800* 
801801* @param  x - input ndarray 
802802* @param  options - function options 
@@ -836,7 +836,7 @@ declare function flattenBy<W = unknown>( x: int8ndarray, options: Options, fcn:
836836declare  function  flattenBy < W  =  unknown > (  x : uint32ndarray ,  options : Options ,  fcn : Callback < number ,  uint32ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  uint32ndarray ,  number ,  W > >  ) : uint32ndarray ; 
837837
838838/** 
839- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
839+ * Flattens  an ndarray according to  a callback function . 
840840* 
841841* @param  x - input ndarray 
842842* @param  options - function options 
@@ -876,7 +876,7 @@ declare function flattenBy<W = unknown>( x: uint32ndarray, options: Options, fcn
876876declare  function  flattenBy < W  =  unknown > (  x : uint16ndarray ,  options : Options ,  fcn : Callback < number ,  uint16ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  uint16ndarray ,  number ,  W > >  ) : uint16ndarray ; 
877877
878878/** 
879- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
879+ * Flattens  an ndarray according to  a callback function . 
880880* 
881881* @param  x - input ndarray 
882882* @param  options - function options 
@@ -916,7 +916,7 @@ declare function flattenBy<W = unknown>( x: uint16ndarray, options: Options, fcn
916916declare  function  flattenBy < W  =  unknown > (  x : uint8ndarray ,  options : Options ,  fcn : Callback < number ,  uint8ndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  uint8ndarray ,  number ,  W > >  ) : uint8ndarray ; 
917917
918918/** 
919- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
919+ * Flattens  an ndarray according to  a callback function . 
920920* 
921921* @param  x - input ndarray 
922922* @param  options - function options 
@@ -956,7 +956,7 @@ declare function flattenBy<W = unknown>( x: uint8ndarray, options: Options, fcn:
956956declare  function  flattenBy < W  =  unknown > (  x : uint8cndarray ,  options : Options ,  fcn : Callback < number ,  uint8cndarray ,  number ,  W > ,  thisArg ?: ThisParameterType < Callback < number ,  uint8cndarray ,  number ,  W > >  ) : uint8cndarray ; 
957957
958958/** 
959- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
959+ * Flattens  an ndarray according to  a callback function . 
960960* 
961961* @param  x - input ndarray 
962962* @param  options - function options 
@@ -996,7 +996,7 @@ declare function flattenBy<W = unknown>( x: uint8cndarray, options: Options, fcn
996996declare  function  flattenBy < W  =  unknown > (  x : boolndarray ,  options : Options ,  fcn : Callback < boolean ,  boolndarray ,  boolean ,  W > ,  thisArg ?: ThisParameterType < Callback < boolean ,  boolndarray ,  boolean ,  W > >  ) : boolndarray ; 
997997
998998/** 
999- * Applies a callback to elements in  an input  ndarray and returns  a flattened output ndarray . 
999+ * Flattens  an ndarray according to  a callback function . 
10001000* 
10011001* @param  x - input ndarray 
10021002* @param  options - function options 
0 commit comments