Skip to content

Commit 7681c79

Browse files
committed
Auto-generated commit
1 parent 48d0764 commit 7681c79

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/types/index.d.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ declare function filledarrayBy( dtype?: DataType ): ArrayOrTypedArray; // tslint
9696
* var arr = filledarrayBy( 5, constantFunction( 1.0 ) );
9797
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
9898
*/
99-
declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures
99+
declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
100100

101101
/**
102102
* Creates a filled array according to a provided callback function and having a specified `length`.
@@ -128,7 +128,7 @@ declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ):
128128
* var arr = filledarrayBy( 5, 'float64', constantFunction( 1.0 ) );
129129
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
130130
*/
131-
declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures
131+
declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
132132

133133
/**
134134
* Creates a filled array from another `array` according to a provided callback function.
@@ -144,7 +144,7 @@ declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback,
144144
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], constantFunction( 1.0 ) );
145145
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
146146
*/
147-
declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures
147+
declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
148148

149149
/**
150150
* Creates a filled array from another `array` according to a provided callback function.
@@ -176,7 +176,7 @@ declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any
176176
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], 'float64', constantFunction( 1.0 ) );
177177
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
178178
*/
179-
declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures
179+
declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
180180

181181
/**
182182
* Creates a filled array from an iterable according to a callback function.
@@ -196,7 +196,7 @@ declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callba
196196
* var arr = filledarrayBy( it, constantFunction( 1.0 ) );
197197
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
198198
*/
199-
declare function filledarrayBy( iterable: IterableIterator, callback: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures
199+
declare function filledarrayBy( iterable: IterableIterator, callback: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
200200

201201
/**
202202
* Creates a filled array from an iterable according to a callback function.
@@ -232,7 +232,7 @@ declare function filledarrayBy( iterable: IterableIterator, callback: Callback,
232232
* var arr = filledarrayBy( it, 'float64', constantFunction( 1.0 ) );
233233
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
234234
*/
235-
declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, callback: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures
235+
declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, callback: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
236236

237237
/**
238238
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -256,7 +256,7 @@ declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, cal
256256
* var arr = filledarrayBy( buf, 8, 2, constantFunction( 1.0 ) );
257257
* // returns <Float64Array>[ 1.0, 1.0 ]
258258
*/
259-
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length
259+
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray;
260260

261261
/**
262262
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -296,7 +296,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length:
296296
* var arr = filledarrayBy( buf, 8, 2, 'float64', constantFunction( 1.0 ) );
297297
* // returns <Float64Array>[ 1.0, 1.0 ]
298298
*/
299-
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length unified-signatures
299+
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures
300300

301301
/**
302302
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -319,7 +319,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length:
319319
* var arr = filledarrayBy( buf, 8, constantFunction( 1.0 ) );
320320
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
321321
*/
322-
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length
322+
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray;
323323

324324
/**
325325
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -358,7 +358,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, clbk: C
358358
* var arr = filledarrayBy( buf, 8, 'float64', constantFunction( 1.0 ) );
359359
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
360360
*/
361-
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length unified-signatures
361+
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures
362362

363363
/**
364364
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -380,7 +380,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype:
380380
* var arr = filledarrayBy( buf, constantFunction( 1.0 ) );
381381
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0 ]
382382
*/
383-
declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length unified-signatures
383+
declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures
384384

385385
/**
386386
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -418,7 +418,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: a
418418
* var arr = filledarrayBy( buf, 'float64', constantFunction( 1.0 ) );
419419
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0 ]
420420
*/
421-
declare function filledarrayBy( buffer: ArrayBuffer, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length unified-signatures
421+
declare function filledarrayBy( buffer: ArrayBuffer, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures
422422

423423

424424
// EXPORTS //

0 commit comments

Comments
 (0)