Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 7, 2024
1 parent a3e145c commit 084a680
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

40 changes: 20 additions & 20 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ declare function filledarrayBy( dtype?: DataType ): ArrayOrTypedArray; // eslint
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var arr = filledarrayBy( 5, constantFunction( 1.0 ) );
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
Expand Down Expand Up @@ -123,7 +123,7 @@ declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ):
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var arr = filledarrayBy( 5, 'float64', constantFunction( 1.0 ) );
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
Expand All @@ -139,7 +139,7 @@ declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback,
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], constantFunction( 1.0 ) );
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
Expand Down Expand Up @@ -171,7 +171,7 @@ declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
*
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], 'float64', constantFunction( 1.0 ) );
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
Expand All @@ -187,8 +187,8 @@ declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callba
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var iterConstant = require( `@stdlib/iter/constant` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
* var iterConstant = require( '@stdlib/iter-constant' );
*
* var it = iterConstant( 3.0, {
* 'iter': 3
Expand Down Expand Up @@ -223,8 +223,8 @@ declare function filledarrayBy( iterable: IterableIterator, callback: Callback,
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var iterConstant = require( `@stdlib/iter/constant` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
* var iterConstant = require( '@stdlib/iter-constant' );
*
* var it = iterConstant( 3.0, {
* 'iter': 3
Expand All @@ -249,8 +249,8 @@ declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, cal
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var ArrayBuffer = require( `@stdlib/array/buffer` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
* var ArrayBuffer = require( '@stdlib/array-buffer' );
*
* var buf = new ArrayBuffer( 32 );
* var arr = filledarrayBy( buf, 8, 2, constantFunction( 1.0 ) );
Expand Down Expand Up @@ -289,8 +289,8 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length:
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var ArrayBuffer = require( `@stdlib/array/buffer` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
* var ArrayBuffer = require( '@stdlib/array-buffer' );
*
* var buf = new ArrayBuffer( 32 );
* var arr = filledarrayBy( buf, 8, 2, 'float64', constantFunction( 1.0 ) );
Expand All @@ -312,8 +312,8 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length:
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var ArrayBuffer = require( `@stdlib/array/buffer` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
* var ArrayBuffer = require( '@stdlib/array-buffer' );
*
* var buf = new ArrayBuffer( 32 );
* var arr = filledarrayBy( buf, 8, constantFunction( 1.0 ) );
Expand Down Expand Up @@ -351,8 +351,8 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, clbk: C
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var ArrayBuffer = require( `@stdlib/array/buffer` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
* var ArrayBuffer = require( '@stdlib/array-buffer' );
*
* var buf = new ArrayBuffer( 32 );
* var arr = filledarrayBy( buf, 8, 'float64', constantFunction( 1.0 ) );
Expand All @@ -373,8 +373,8 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype:
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var ArrayBuffer = require( `@stdlib/array/buffer` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
* var ArrayBuffer = require( '@stdlib/array-buffer' );
*
* var buf = new ArrayBuffer( 32 );
* var arr = filledarrayBy( buf, constantFunction( 1.0 ) );
Expand Down Expand Up @@ -411,8 +411,8 @@ declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: a
* @returns filled array
*
* @example
* var constantFunction = require( `@stdlib/utils/constant-function` );
* var ArrayBuffer = require( `@stdlib/array/buffer` );
* var constantFunction = require( '@stdlib/utils-constant-function' );
* var ArrayBuffer = require( '@stdlib/array-buffer' );
*
* var buf = new ArrayBuffer( 32 );
* var arr = filledarrayBy( buf, 'float64', constantFunction( 1.0 ) );
Expand Down

0 comments on commit 084a680

Please sign in to comment.