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 Nov 9, 2023
1 parent 38ebea9 commit 3ffb662
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,15 @@ for ( i = 0; i < dt.length; i++ ) {

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/math-strided/special/ceil`][@stdlib/math/strided/special/ceil]</span><span class="delimiter">: </span><span class="description">round each element in a strided array toward positive infinity.</span>
- <span class="package-name">[`@stdlib/math-strided/special/dtrunc`][@stdlib/math/strided/special/dtrunc]</span><span class="delimiter">: </span><span class="description">round each element in a double-precision floating-point strided array toward zero.</span>
- <span class="package-name">[`@stdlib/math-strided/special/floor`][@stdlib/math/strided/special/floor]</span><span class="delimiter">: </span><span class="description">round each element in a strided array toward negative infinity.</span>
- <span class="package-name">[`@stdlib/math-strided/special/strunc`][@stdlib/math/strided/special/strunc]</span><span class="delimiter">: </span><span class="description">round each element in a single-precision floating-point strided array toward zero.</span>

</section>

<!-- /.related -->
Expand Down Expand Up @@ -278,6 +287,18 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].

[@stdlib/strided/dtypes]: https://github.com/stdlib-js/strided-dtypes

<!-- <related-links> -->

[@stdlib/math/strided/special/ceil]: https://github.com/stdlib-js/math-strided-special-ceil

[@stdlib/math/strided/special/dtrunc]: https://github.com/stdlib-js/math-strided-special-dtrunc

[@stdlib/math/strided/special/floor]: https://github.com/stdlib-js/math-strided-special-floor

[@stdlib/math/strided/special/strunc]: https://github.com/stdlib-js/math-strided-special-strunc

<!-- </related-links> -->

</section>

<!-- /.links -->
4 changes: 2 additions & 2 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ interface Routine {
* trunc( x.length, 'float64', x, 1, 'float64', y, 1 );
* // y => <Float64Array>[ 1.0, 2.0, -3.0, 4.0, -5.0 ]
*/
( N: number, dtypeX: any, x: ArrayLike<number>, strideX: number, dtypeY: any, y: ArrayLike<number>, strideY: number ): ArrayLike<number>; // tslint:disable-line:max-line-length
( N: number, dtypeX: any, x: ArrayLike<number>, strideX: number, dtypeY: any, y: ArrayLike<number>, strideY: number ): ArrayLike<number>;

/**
* Rounds each element in a strided array `x` toward zero and assigns the results to elements in a strided array `y` using alternative indexing semantics.
Expand Down Expand Up @@ -78,7 +78,7 @@ interface Routine {
* trunc.ndarray( x.length, 'float64', x, 1, 0, 'float64', y, 1, 0 );
* // y => <Float64Array>[ 1.0, 2.0, -3.0, 4.0, -5.0 ]
*/
ndarray( N: number, dtypeX: any, x: ArrayLike<number>, strideX: number, offsetX: number, dtypeY: any, y: ArrayLike<number>, strideY: number, offsetY: number ): ArrayLike<number>; // tslint:disable-line:max-line-length
ndarray( N: number, dtypeX: any, x: ArrayLike<number>, strideX: number, offsetX: number, dtypeY: any, y: ArrayLike<number>, strideY: number, offsetY: number ): ArrayLike<number>;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@stdlib/strided-dispatch": "^0.1.1",
"@stdlib/strided-dtypes": "^0.1.0",
"@stdlib/strided-napi-unary": "^0.1.0",
"@stdlib/types": "^0.1.0",
"@stdlib/types": "^0.2.0",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1",
"@stdlib/utils-library-manifest": "^0.1.1",
"@stdlib/utils-try-require": "^0.1.1"
Expand All @@ -63,7 +63,7 @@
"@stdlib/array-float64": "^0.1.1",
"@stdlib/array-uint8": "^0.1.1",
"@stdlib/assert-is-browser": "^0.1.1",
"@stdlib/bench": "^0.1.0",
"@stdlib/bench": "^0.2.0",
"@stdlib/fs-write-file": "^0.1.1",
"@stdlib/math-base-assert-is-nan": "^0.1.1",
"@stdlib/math-base-special-floor": "^0.1.1",
Expand Down

0 comments on commit 3ffb662

Please sign in to comment.