Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
{{alias}}( N, x, strideX, y, strideY )
Returns the index of the first element in a double-precision floating-point
strided array equal to a corresponding element in another double-precision
floating-point strided array
floating-point strided array.

The `N` and stride parameters determine which elements in the strided arrays
are accessed at runtime.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ interface Routine {
* var idx = dfirstIndexEqual.ndarray( 4, x, 1, 0, y, 1, 0 );
* // returns 2
*/
declare const dfirstIndexEqual: Routine;
declare var dfirstIndexEqual: Routine;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ CBLAS_INT stdlib_strided_sfirst_index_equal( const CBLAS_INT N, const float *X,

#### stdlib_strided_sfirst_index_equal_ndarray( N, \*X, strideX, offsetX, \*Y, strideY, offsetY )

<!-- lint disable maximum-heading-length -->
<!-- lint enable maximum-heading-length -->

Returns the index of the first element in a single-precision floating-point strided array equal to a corresponding element in another single-precision floating-point strided array using alternative indexing semantics.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
-1


{{alias}}( N, x, strideX, offsetX, y, strideY, offsetY )
{{alias}}.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )
Returns the index of the first element in a single-precision floating-point
strided array equal to a corresponding element in another single-precision
floating-point strided array using alternative indexing semantics.
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@
* 'byteOffset': 0,
* 'BYTES_PER_ELEMENT': 8,
* 'length': 4,
* 'get': ( i: number ): obj.Uint64 => {
* 'get': ( i: number ): obj.Uint64 => {
* return {
* 'hi': buf[ (2*i) ],
* 'lo': buf[ (2*i)+1 ],
Expand All @@ -857,7 +857,7 @@
* },
* 'set': ( value: obj.Uint64, i?: number ) => {
* i = ( i ) ? i : 0;
* buf[ (2*i)] = value.hi;
* buf[ (2*i) ] = value.hi;
* buf[ (2*i)+1 ] = value.lo;
* }
* };
Expand Down Expand Up @@ -1857,7 +1857,7 @@
/**
* "Raw" (original) data type value.
*/
value: any;

Check warning on line 1860 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}

/**
Expand Down Expand Up @@ -5366,7 +5366,7 @@
/**
* Value associated with a property (default: `undefined`).
*/
value?: any;

Check warning on line 5369 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}

/**
Expand Down Expand Up @@ -5400,7 +5400,7 @@
* - When the property is accessed, the function is called without arguments and with `this` set to the object through which the property is accessed (note: this may **not** be the object on which the property is defined due to inheritance).
* - The return value will be used as the value of the property.
*/
get?(): any;

Check warning on line 5403 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* A function which serves as a setter for the property.
Expand All @@ -5410,7 +5410,7 @@
* - If omitted from a descriptor, a property value cannot be assigned.
* - When the property is assigned to, the function is called with one argument (the value being assigned to the property) and with `this` set to the object through which the property is assigned.
*/
set?( x: any ): void;

Check warning on line 5413 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}

/**
Expand Down Expand Up @@ -5663,7 +5663,7 @@
* @example
* const rand: PRNG = () => 3.14;
*/
type PRNG = ( ...args: Array<any> ) => number;

Check warning on line 5666 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* A pseudorandom number generator (PRNG) seed for the 32-bit Mersenne Twister (MT19937) PRNG.
Expand Down Expand Up @@ -5883,7 +5883,7 @@
* @param values - input array containing values to write
* @returns boolean indicating whether the underlying WebAssembly memory instance has enough capacity
*/
hasCapacity( byteOffset: number, values: Collection | AccessorArrayLike<any> ): boolean;

Check warning on line 5886 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* Returns a boolean indicating whether a provided list of values is a view of the underlying memory of the WebAssembly module.
Expand All @@ -5891,7 +5891,7 @@
* @param values - input array
* @returns boolean indicating whether the list is a memory view
*/
isView( values: Collection | AccessorArrayLike<any> ): boolean;

Check warning on line 5894 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* Writes values to the underlying WebAssembly memory instance.
Expand All @@ -5906,7 +5906,7 @@
* @param values - input array containing values to write
* @returns module wrapper instance
*/
write( byteOffset: number, values: Collection | AccessorArrayLike<any> ): ModuleWrapper;

Check warning on line 5909 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* Reads values from the underlying WebAssembly memory instance.
Expand All @@ -5921,6 +5921,6 @@
* @param out - output array
* @returns module wrapper instance
*/
read( byteOffset: number, out: Collection | AccessorArrayLike<any> ): ModuleWrapper;

Check warning on line 5924 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}
}
Loading