@@ -75,7 +75,7 @@ declare function filledarray( dtype?: DataType ): ArrayOrTypedArray;
75
75
* var arr = filledarray( 1.0, 5, 'float32' );
76
76
* // returns <Float32Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
77
77
*/
78
- declare function filledarray ( value : any , length : number , dtype ?: DataType ) : ArrayOrTypedArray ; // tslint:disable-line:max-line-length
78
+ declare function filledarray ( value : any , length : number , dtype ?: DataType ) : ArrayOrTypedArray ;
79
79
80
80
/**
81
81
* Creates a filled array from another `array`.
@@ -93,7 +93,7 @@ declare function filledarray( value: any, length: number, dtype?: DataType ): Ar
93
93
* var arr = filledarray( 1.0, [ 5.0, -3.0, 2.0 ], 'float32' );
94
94
* // returns <Float32Array>[ 1.0, 1.0, 1.0 ]
95
95
*/
96
- declare function filledarray ( value : any , array : Collection , dtype ?: DataType ) : ArrayOrTypedArray ; // tslint:disable-line:max-line-length unified-signatures
96
+ declare function filledarray ( value : any , array : Collection , dtype ?: DataType ) : ArrayOrTypedArray ; unified - signatures
97
97
98
98
/**
99
99
* Creates a filled array from an iterable.
@@ -121,7 +121,7 @@ declare function filledarray( value: any, array: Collection, dtype?: DataType ):
121
121
* var arr = filledarray( 1.0, it, 'float32' );
122
122
* // returns <Float32Array>[ 1.0, 1.0, 1.0 ]
123
123
*/
124
- declare function filledarray ( value : any , iterable : IterableIterator , dtype ?: DataType ) : ArrayOrTypedArray ; // tslint:disable-line:max-line-length unified-signatures
124
+ declare function filledarray ( value : any , iterable : IterableIterator , dtype ?: DataType ) : ArrayOrTypedArray ; unified - signatures
125
125
126
126
/**
127
127
* Returns a filled typed array view of an `ArrayBuffer`.
@@ -151,7 +151,7 @@ declare function filledarray( value: any, iterable: IterableIterator, dtype?: Da
151
151
* var arr = filledarray( 1.0, buf, 8, 2, 'float32' );
152
152
* // returns <Float32Array>[ 1.0, 1.0 ]
153
153
*/
154
- declare function filledarray ( value : any , buffer : ArrayBuffer , byteOffset : number , length : number , dtype ?: DataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
154
+ declare function filledarray ( value : any , buffer : ArrayBuffer , byteOffset : number , length : number , dtype ?: DataType ) : RealOrComplexTypedArray ;
155
155
156
156
/**
157
157
* Returns a filled typed array view of an `ArrayBuffer`.
@@ -180,7 +180,7 @@ declare function filledarray( value: any, buffer: ArrayBuffer, byteOffset: numbe
180
180
* var arr = filledarray( 1.0, buf, 8, 'float32' );
181
181
* // returns <Float32Array>[ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ]
182
182
*/
183
- declare function filledarray ( value : any , buffer : ArrayBuffer , byteOffset : number , dtype ?: DataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
183
+ declare function filledarray ( value : any , buffer : ArrayBuffer , byteOffset : number , dtype ?: DataType ) : RealOrComplexTypedArray ;
184
184
185
185
/**
186
186
* Returns a filled typed array view of an `ArrayBuffer`.
@@ -208,7 +208,7 @@ declare function filledarray( value: any, buffer: ArrayBuffer, byteOffset: numbe
208
208
* var arr = filledarray( 1.0, buf, 'float32' );
209
209
* // returns <Float32Array>[ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ]
210
210
*/
211
- declare function filledarray ( value : any , buffer : ArrayBuffer , dtype ?: DataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length unified-signatures
211
+ declare function filledarray ( value : any , buffer : ArrayBuffer , dtype ?: DataType ) : RealOrComplexTypedArray ; unified - signatures
212
212
213
213
214
214
// EXPORTS //
0 commit comments