@@ -35,7 +35,7 @@ import { ComplexLike } from '@stdlib/types/complex';
35
35
* var arr = full( 2, 1.0, 'float64' );
36
36
* // returns <Float64Array>[ 1.0, 1.0 ]
37
37
*/
38
- declare function full ( length : number , value : number , dtype : 'float64' ) : Float64Array ; // tslint:disable-line:max-line-length
38
+ declare function full ( length : number , value : number , dtype : 'float64' ) : Float64Array ;
39
39
40
40
/**
41
41
* Creates a filled array having a specified length.
@@ -49,7 +49,7 @@ declare function full( length: number, value: number, dtype: 'float64' ): Float6
49
49
* var arr = full( 2, 1.0, 'float32' );
50
50
* // returns <Float32Array>[ 1.0, 1.0 ]
51
51
*/
52
- declare function full ( length : number , value : number , dtype : 'float32' ) : Float32Array ; // tslint:disable-line:max-line-length
52
+ declare function full ( length : number , value : number , dtype : 'float32' ) : Float32Array ;
53
53
54
54
/**
55
55
* Creates a filled array having a specified length.
@@ -65,7 +65,7 @@ declare function full( length: number, value: number, dtype: 'float32' ): Float3
65
65
* var arr = full( 2, new Complex128( 1.0, 2.0 ), 'complex128' );
66
66
* // returns <Complex128Array>
67
67
*/
68
- declare function full ( length : number , value : ComplexLike , dtype : 'complex128' ) : Complex128Array ; // tslint:disable-line:max-line-length
68
+ declare function full ( length : number , value : ComplexLike , dtype : 'complex128' ) : Complex128Array ;
69
69
70
70
/**
71
71
* Creates a filled array having a specified length.
@@ -81,7 +81,7 @@ declare function full( length: number, value: ComplexLike, dtype: 'complex128' )
81
81
* var arr = full( 2, new Complex64( 1.0, 2.0 ), 'complex64' );
82
82
* // returns <Complex64Array>
83
83
*/
84
- declare function full ( length : number , value : ComplexLike , dtype : 'complex64' ) : Complex64Array ; // tslint:disable-line:max-line-length
84
+ declare function full ( length : number , value : ComplexLike , dtype : 'complex64' ) : Complex64Array ;
85
85
86
86
/**
87
87
* Creates a filled array having a specified length.
@@ -95,7 +95,7 @@ declare function full( length: number, value: ComplexLike, dtype: 'complex64' ):
95
95
* var arr = full( 2, 1, 'int32' );
96
96
* // returns <Int32Array>[ 1, 1 ]
97
97
*/
98
- declare function full ( length : number , value : number , dtype : 'int32' ) : Int32Array ; // tslint:disable-line:max-line-length
98
+ declare function full ( length : number , value : number , dtype : 'int32' ) : Int32Array ;
99
99
100
100
/**
101
101
* Creates a filled array having a specified length.
@@ -109,7 +109,7 @@ declare function full( length: number, value: number, dtype: 'int32' ): Int32Arr
109
109
* var arr = full( 2, 1, 'int16' );
110
110
* // returns <Int16Array>[ 1, 1 ]
111
111
*/
112
- declare function full ( length : number , value : number , dtype : 'int16' ) : Int16Array ; // tslint:disable-line:max-line-length
112
+ declare function full ( length : number , value : number , dtype : 'int16' ) : Int16Array ;
113
113
114
114
/**
115
115
* Creates a filled array having a specified length.
@@ -123,7 +123,7 @@ declare function full( length: number, value: number, dtype: 'int16' ): Int16Arr
123
123
* var arr = full( 2, 1, 'int8' );
124
124
* // returns <Int8Array>[ 1, 1 ]
125
125
*/
126
- declare function full ( length : number , value : number , dtype : 'int8' ) : Int8Array ; // tslint:disable-line:max-line-length
126
+ declare function full ( length : number , value : number , dtype : 'int8' ) : Int8Array ;
127
127
128
128
/**
129
129
* Creates a filled array having a specified length.
@@ -137,7 +137,7 @@ declare function full( length: number, value: number, dtype: 'int8' ): Int8Array
137
137
* var arr = full( 2, 1, 'uint32' );
138
138
* // returns <Uint32Array>[ 1, 1 ]
139
139
*/
140
- declare function full ( length : number , value : number , dtype : 'uint32' ) : Uint32Array ; // tslint:disable-line:max-line-length
140
+ declare function full ( length : number , value : number , dtype : 'uint32' ) : Uint32Array ;
141
141
142
142
/**
143
143
* Creates a filled array having a specified length.
@@ -151,7 +151,7 @@ declare function full( length: number, value: number, dtype: 'uint32' ): Uint32A
151
151
* var arr = full( 2, 1, 'uint16' );
152
152
* // returns <Uint16Array>[ 1, 1 ]
153
153
*/
154
- declare function full ( length : number , value : number , dtype : 'uint16' ) : Uint16Array ; // tslint:disable-line:max-line-length
154
+ declare function full ( length : number , value : number , dtype : 'uint16' ) : Uint16Array ;
155
155
156
156
/**
157
157
* Creates a filled array having a specified length.
@@ -165,7 +165,7 @@ declare function full( length: number, value: number, dtype: 'uint16' ): Uint16A
165
165
* var arr = full( 2, 1, 'uint8' );
166
166
* // returns <Uint8Array>[ 1, 1 ]
167
167
*/
168
- declare function full ( length : number , value : number , dtype : 'uint8' ) : Uint8Array ; // tslint:disable-line:max-line-length
168
+ declare function full ( length : number , value : number , dtype : 'uint8' ) : Uint8Array ;
169
169
170
170
/**
171
171
* Creates a filled array having a specified length.
@@ -179,7 +179,7 @@ declare function full( length: number, value: number, dtype: 'uint8' ): Uint8Arr
179
179
* var arr = full( 2, 1, 'uint8c' );
180
180
* // returns <Uint8ClampedArray>[ 1, 1 ]
181
181
*/
182
- declare function full ( length : number , value : number , dtype : 'uint8c' ) : Uint8ClampedArray ; // tslint:disable-line:max-line-length
182
+ declare function full ( length : number , value : number , dtype : 'uint8c' ) : Uint8ClampedArray ;
183
183
184
184
/**
185
185
* Creates a filled array having a specified length.
@@ -193,7 +193,7 @@ declare function full( length: number, value: number, dtype: 'uint8c' ): Uint8Cl
193
193
* var arr = full( 2, 1, 'generic' );
194
194
* // returns [ 1, 1 ]
195
195
*/
196
- declare function full ( length : number , value : any , dtype : 'generic' ) : Array < any > ; // tslint:disable-line:max-line-length
196
+ declare function full ( length : number , value : any , dtype : 'generic' ) : Array < any > ;
197
197
198
198
/**
199
199
* Creates a filled array having a specified length.
0 commit comments