Skip to content

Commit 2cfd19d

Browse files
committed
Fix type name
1 parent c8b1f0b commit 2cfd19d

77 files changed

Lines changed: 176 additions & 176 deletions

File tree

Some content is hidden

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

lib/node_modules/@stdlib/_tools/scaffold/strided-unary-by/data/docs/types/index__d__ts.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Binary = ( value: any, idx: number ) => number | void;
5454
* @param xi - strided index (offsetX + idx*strideX)
5555
* @returns accessed value
5656
*/
57-
type Tertiary = ( value: any, idx: number, xi: number ) => number | void;
57+
type Ternary = ( value: any, idx: number, xi: number ) => number | void;
5858

5959
/**
6060
* Returns an accessed value.
@@ -103,7 +103,7 @@ type Senary = ( value: any, idx: number, xi: number, yi: number, x: Collection,
103103
* @param y - output array
104104
* @returns accessed value
105105
*/
106-
type Callback = Nullary | Unary | Binary | Tertiary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
106+
type Callback = Nullary | Unary | Binary | Ternary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
107107

108108
/**
109109
* Interface describing `{{ALIAS}}`.

lib/node_modules/@stdlib/blas/ext/base/gfill-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Binary = ( value: any, aidx: number ) => any;
5454
* @param sidx - strided index (offset + aidx*stride)
5555
* @returns fill value
5656
*/
57-
type Tertiary = ( value: any, aidx: number, sidx: number ) => any;
57+
type Ternary = ( value: any, aidx: number, sidx: number ) => any;
5858

5959
/**
6060
* Returns a fill value.
@@ -76,7 +76,7 @@ type Quaternary = ( value: any, aidx: number, sidx: number, array: Collection )
7676
* @param array - input array
7777
* @returns fill value
7878
*/
79-
type Callback = Nullary | Unary | Binary | Tertiary | Quaternary;
79+
type Callback = Nullary | Unary | Binary | Ternary | Quaternary;
8080

8181
/**
8282
* Interface describing `gfillBy`.

lib/node_modules/@stdlib/iter/to-array-view-right/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ type Binary = ( value: any, index: number ) => any;
5959
* @param src - source array-like object
6060
* @returns iterator value
6161
*/
62-
type Tertiary = ( value: any, index: number, src: ArrayLike<any> ) => any;
62+
type Ternary = ( value: any, index: number, src: ArrayLike<any> ) => any;
6363

6464
/**
6565
* Map function invoked for each iterated value.
@@ -69,7 +69,7 @@ type Tertiary = ( value: any, index: number, src: ArrayLike<any> ) => any;
6969
* @param src - source array-like object
7070
* @returns iterator value
7171
*/
72-
type MapFunction = Nullary | Unary | Binary | Tertiary;
72+
type MapFunction = Nullary | Unary | Binary | Ternary;
7373

7474
/**
7575
* Fills an array-like object view from right to left with values returned from an iterator.

lib/node_modules/@stdlib/iter/to-array-view/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ type Binary = ( value: any, index: number ) => any;
5959
* @param src - source array-like object
6060
* @returns iterator value
6161
*/
62-
type Tertiary = ( value: any, index: number, src: ArrayLike<any> ) => any;
62+
type Ternary = ( value: any, index: number, src: ArrayLike<any> ) => any;
6363

6464
/**
6565
* Map function invoked for each iterated value.
@@ -69,7 +69,7 @@ type Tertiary = ( value: any, index: number, src: ArrayLike<any> ) => any;
6969
* @param src - source array-like object
7070
* @returns iterator value
7171
*/
72-
type MapFunction = Nullary | Unary | Binary | Tertiary;
72+
type MapFunction = Nullary | Unary | Binary | Ternary;
7373

7474
/**
7575
* Fills an array-like object view with values returned from an iterator.

lib/node_modules/@stdlib/math/strided/special/abs-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Binary = ( value: any, idx: number ) => number | void;
5454
* @param xi - strided index (offsetX + idx*strideX)
5555
* @returns accessed value
5656
*/
57-
type Tertiary = ( value: any, idx: number, xi: number ) => number | void;
57+
type Ternary = ( value: any, idx: number, xi: number ) => number | void;
5858

5959
/**
6060
* Returns an accessed value.
@@ -103,7 +103,7 @@ type Senary = ( value: any, idx: number, xi: number, yi: number, x: Collection,
103103
* @param y - output array
104104
* @returns accessed value
105105
*/
106-
type Callback = Nullary | Unary | Binary | Tertiary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
106+
type Callback = Nullary | Unary | Binary | Ternary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
107107

108108
/**
109109
* Interface describing `absBy`.

lib/node_modules/@stdlib/math/strided/special/abs2-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Binary = ( value: any, idx: number ) => number | void;
5454
* @param xi - strided index (offsetX + idx*strideX)
5555
* @returns accessed value
5656
*/
57-
type Tertiary = ( value: any, idx: number, xi: number ) => number | void;
57+
type Ternary = ( value: any, idx: number, xi: number ) => number | void;
5858

5959
/**
6060
* Returns an accessed value.
@@ -103,7 +103,7 @@ type Senary = ( value: any, idx: number, xi: number, yi: number, x: Collection,
103103
* @param y - output array
104104
* @returns accessed value
105105
*/
106-
type Callback = Nullary | Unary | Binary | Tertiary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
106+
type Callback = Nullary | Unary | Binary | Ternary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
107107

108108
/**
109109
* Interface describing `abs2By`.

lib/node_modules/@stdlib/math/strided/special/acos-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Binary = ( value: any, idx: number ) => number | void;
5454
* @param xi - strided index (offsetX + idx*strideX)
5555
* @returns accessed value
5656
*/
57-
type Tertiary = ( value: any, idx: number, xi: number ) => number | void;
57+
type Ternary = ( value: any, idx: number, xi: number ) => number | void;
5858

5959
/**
6060
* Returns an accessed value.
@@ -103,7 +103,7 @@ type Senary = ( value: any, idx: number, xi: number, yi: number, x: Collection,
103103
* @param y - output array
104104
* @returns accessed value
105105
*/
106-
type Callback = Nullary | Unary | Binary | Tertiary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
106+
type Callback = Nullary | Unary | Binary | Ternary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
107107

108108
/**
109109
* Interface describing `acosBy`.

lib/node_modules/@stdlib/math/strided/special/acosh-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Binary = ( value: any, idx: number ) => number | void;
5454
* @param xi - strided index (offsetX + idx*strideX)
5555
* @returns accessed value
5656
*/
57-
type Tertiary = ( value: any, idx: number, xi: number ) => number | void;
57+
type Ternary = ( value: any, idx: number, xi: number ) => number | void;
5858

5959
/**
6060
* Returns an accessed value.
@@ -103,7 +103,7 @@ type Senary = ( value: any, idx: number, xi: number, yi: number, x: Collection,
103103
* @param y - output array
104104
* @returns accessed value
105105
*/
106-
type Callback = Nullary | Unary | Binary | Tertiary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
106+
type Callback = Nullary | Unary | Binary | Ternary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
107107

108108
/**
109109
* Interface describing `acoshBy`.

lib/node_modules/@stdlib/math/strided/special/acot-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Binary = ( value: any, idx: number ) => number | void;
5454
* @param xi - strided index (offsetX + idx*strideX)
5555
* @returns accessed value
5656
*/
57-
type Tertiary = ( value: any, idx: number, xi: number ) => number | void;
57+
type Ternary = ( value: any, idx: number, xi: number ) => number | void;
5858

5959
/**
6060
* Returns an accessed value.
@@ -103,7 +103,7 @@ type Senary = ( value: any, idx: number, xi: number, yi: number, x: Collection,
103103
* @param y - output array
104104
* @returns accessed value
105105
*/
106-
type Callback = Nullary | Unary | Binary | Tertiary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
106+
type Callback = Nullary | Unary | Binary | Ternary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
107107

108108
/**
109109
* Interface describing `acotBy`.

lib/node_modules/@stdlib/math/strided/special/acoth-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type Binary = ( value: any, idx: number ) => number | void;
5454
* @param xi - strided index (offsetX + idx*strideX)
5555
* @returns accessed value
5656
*/
57-
type Tertiary = ( value: any, idx: number, xi: number ) => number | void;
57+
type Ternary = ( value: any, idx: number, xi: number ) => number | void;
5858

5959
/**
6060
* Returns an accessed value.
@@ -103,7 +103,7 @@ type Senary = ( value: any, idx: number, xi: number, yi: number, x: Collection,
103103
* @param y - output array
104104
* @returns accessed value
105105
*/
106-
type Callback = Nullary | Unary | Binary | Tertiary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
106+
type Callback = Nullary | Unary | Binary | Ternary | Quaternary | Quinary | Senary; // tslint-disable-line max-line-length
107107

108108
/**
109109
* Interface describing `acothBy`.

0 commit comments

Comments
 (0)