2323import { typedndarray } from '@stdlib/types/ndarray' ;
2424
2525/**
26- * Returns the result of callback function .
26+ * Callback function applied to each element of an ndarray .
2727*
2828* @returns result
2929*/
3030type Nullary < ThisArg > = ( this : ThisArg ) => number | void ;
3131
3232/**
33- * Returns the result of callback function .
33+ * Callback function applied to each element of an ndarray .
3434*
3535* @param value - current array element
3636* @returns result
3737*/
3838type Unary < T , ThisArg > = ( this : ThisArg , value : T ) => number | void ;
3939
4040/**
41- * Returns the result of callback function .
41+ * Callback function applied to each element of an ndarray .
4242*
4343* @param value - current array element
4444* @param index - current array element index
@@ -47,7 +47,7 @@ type Unary<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
4747type Binary < T , ThisArg > = ( this : ThisArg , value : T , index : number ) => number | void ;
4848
4949/**
50- * Returns the result of callback function .
50+ * Callback function applied to each element of an ndarray .
5151*
5252* @param value - current array element
5353* @param index - current array element index
@@ -57,7 +57,7 @@ type Binary<T, ThisArg> = ( this: ThisArg, value: T, index: number ) => number |
5757type Ternary < T , U , ThisArg > = ( this : ThisArg , value : T , index : number , array : U ) => number | void ;
5858
5959/**
60- * Returns the result of callback function .
60+ * Callback function applied to each element of an ndarray .
6161*
6262* @param value - current array element
6363* @param index - current array element index
0 commit comments