Skip to content

Commit dcb2555

Browse files
committed
Auto-generated commit
1 parent f3fcd29 commit dcb2555

File tree

45 files changed

+1277
-37
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1277
-37
lines changed

base/binary2d/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape2D } from '@stdlib/types/ndarray';
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/binary3d/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape3D } from '@stdlib/types/ndarray';
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/binary4d/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape4D } from '@stdlib/types/ndarray';
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/binary5d/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape5D } from '@stdlib/types/ndarray';
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/binarynd/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape, Shape1D, Shape2D, Shape3D, Shape4D, Shape5D, Shape6D, Shape7D, S
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/broadcasted-binary2d/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape1D, Shape2D } from '@stdlib/types/ndarray';
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/broadcasted-binary3d/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape1D, Shape2D, Shape3D } from '@stdlib/types/ndarray';
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/broadcasted-binary4d/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape1D, Shape2D, Shape3D, Shape4D } from '@stdlib/types/ndarray';
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/broadcasted-binary5d/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { Shape1D, Shape2D, Shape3D, Shape4D, Shape5D } from '@stdlib/types/ndarr
2626
/**
2727
* Binary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
3031
* @returns result
3132
*/
3233
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

base/broadcasted-quaternary2d/docs/types/index.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ import { Shape1D, Shape2D } from '@stdlib/types/ndarray';
2626
/**
2727
* Quaternary callback.
2828
*
29-
* @param value - input value
29+
* @param v1 - element from first input array
30+
* @param v2 - element from second input array
31+
* @param v3 - element from third input array
32+
* @param v4 - element from fourth input array
3033
* @returns result
3134
*/
3235
type Quaternary<T, U, V, W, X> = ( v1: T, v2: U, v3: V, v4: W ) => X;

0 commit comments

Comments
 (0)