-
-
Notifications
You must be signed in to change notification settings - Fork 612
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ declare function filledarrayBy( dtype?: DataType ): ArrayOrTypedArray; // tslint | |
* var arr = filledarrayBy( 5, constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures | ||
|
||
/** | ||
* 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 ): | |
* var arr = filledarrayBy( 5, 'float64', constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures | ||
|
||
/** | ||
* 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, | |
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures | ||
|
||
/** | ||
* 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 | |
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], 'float64', constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures | ||
|
||
/** | ||
* 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 | |
* var arr = filledarrayBy( it, constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( iterable: IterableIterator, callback: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( iterable: IterableIterator, callback: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures | ||
|
||
/** | ||
* Creates a filled array from an iterable according to a callback function. | ||
|
@@ -232,7 +232,7 @@ declare function filledarrayBy( iterable: IterableIterator, callback: Callback, | |
* var arr = filledarrayBy( it, 'float64', constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, callback: Callback, thisArg?: any ): ArrayOrTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, callback: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures | ||
|
||
/** | ||
* 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 | |
* var arr = filledarrayBy( buf, 8, 2, constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length | ||
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; | ||
|
||
/** | ||
* 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: | |
* var arr = filledarrayBy( buf, 8, 2, 'float64', constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures | ||
|
||
/** | ||
* 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: | |
* var arr = filledarrayBy( buf, 8, constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length | ||
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; | ||
|
||
/** | ||
* 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 | |
* var arr = filledarrayBy( buf, 8, 'float64', constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures | ||
|
||
/** | ||
* 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: | |
* var arr = filledarrayBy( buf, constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
kgryte
Member
|
||
declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures | ||
|
||
/** | ||
* 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 | |
* var arr = filledarrayBy( buf, 'float64', constantFunction( 1.0 ) ); | ||
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0 ] | ||
*/ | ||
declare function filledarrayBy( buffer: ArrayBuffer, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length unified-signatures | ||
declare function filledarrayBy( buffer: ArrayBuffer, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures | ||
|
||
|
||
// EXPORTS // | ||
|
@Planeshifter These signatures are now broken.