@@ -34,22 +34,22 @@ type InputArray<T> = typedndarray<T>;
3434type OutputArray < U > = typedndarray < U > ;
3535
3636/**
37- * Returns the result of callback function .
37+ * Callback function applied to each element of an ndarray .
3838*
3939* @returns result
4040*/
4141type NullaryCallback < ThisArg > = ( this : ThisArg ) => number | void ;
4242
4343/**
44- * Returns the result of callback function .
44+ * Callback function applied to each element of an ndarray .
4545*
4646* @param value - current array element
4747* @returns result
4848*/
4949type UnaryCallback < T , ThisArg > = ( this : ThisArg , value : T ) => number | void ;
5050
5151/**
52- * Returns the result of callback function .
52+ * Callback function applied to each element of an ndarray .
5353*
5454* @param value - current array element
5555* @param index - current array element index
@@ -58,7 +58,7 @@ type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5858type BinaryCallback < T , ThisArg > = ( this : ThisArg , value : T , index : number ) => number | void ;
5959
6060/**
61- * Returns the result of callback function .
61+ * Callback function applied to each element of an ndarray .
6262*
6363* @param value - current array element
6464* @param index - current array element index
@@ -68,7 +68,7 @@ type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) =>
6868type TernaryCallback < T , U , ThisArg > = ( this : ThisArg , value : T , index : number , array : U ) => number | void ;
6969
7070/**
71- * Returns the result of callback function .
71+ * Callback function applied to each element of an ndarray .
7272*
7373* @param value - current array element
7474* @param index - current array element index
0 commit comments