@@ -96,7 +96,7 @@ declare function filledarrayBy( dtype?: DataType ): ArrayOrTypedArray; // tslint
96
96
* var arr = filledarrayBy( 5, constantFunction( 1.0 ) );
97
97
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
98
98
*/
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
100
100
101
101
/**
102
102
* 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 ):
128
128
* var arr = filledarrayBy( 5, 'float64', constantFunction( 1.0 ) );
129
129
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
130
130
*/
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
132
132
133
133
/**
134
134
* 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,
144
144
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], constantFunction( 1.0 ) );
145
145
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
146
146
*/
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
148
148
149
149
/**
150
150
* 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
176
176
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], 'float64', constantFunction( 1.0 ) );
177
177
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
178
178
*/
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
180
180
181
181
/**
182
182
* 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
196
196
* var arr = filledarrayBy( it, constantFunction( 1.0 ) );
197
197
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
198
198
*/
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
200
200
201
201
/**
202
202
* Creates a filled array from an iterable according to a callback function.
@@ -232,7 +232,7 @@ declare function filledarrayBy( iterable: IterableIterator, callback: Callback,
232
232
* var arr = filledarrayBy( it, 'float64', constantFunction( 1.0 ) );
233
233
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
234
234
*/
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
236
236
237
237
/**
238
238
* 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
256
256
* var arr = filledarrayBy( buf, 8, 2, constantFunction( 1.0 ) );
257
257
* // returns <Float64Array>[ 1.0, 1.0 ]
258
258
*/
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 ;
260
260
261
261
/**
262
262
* 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:
296
296
* var arr = filledarrayBy( buf, 8, 2, 'float64', constantFunction( 1.0 ) );
297
297
* // returns <Float64Array>[ 1.0, 1.0 ]
298
298
*/
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
300
300
301
301
/**
302
302
* 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:
319
319
* var arr = filledarrayBy( buf, 8, constantFunction( 1.0 ) );
320
320
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
321
321
*/
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 ;
323
323
324
324
/**
325
325
* 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
358
358
* var arr = filledarrayBy( buf, 8, 'float64', constantFunction( 1.0 ) );
359
359
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
360
360
*/
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
362
362
363
363
/**
364
364
* 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:
380
380
* var arr = filledarrayBy( buf, constantFunction( 1.0 ) );
381
381
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0 ]
382
382
*/
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
384
384
385
385
/**
386
386
* 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
418
418
* var arr = filledarrayBy( buf, 'float64', constantFunction( 1.0 ) );
419
419
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0 ]
420
420
*/
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
422
422
423
423
424
424
// EXPORTS //
0 commit comments