@stdlib/array-base-filter 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -209,8 +209,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
209
209
  [npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-filter.svg
210
210
  [npm-url]: https://npmjs.org/package/@stdlib/array-base-filter
211
211
 
212
- [test-image]: https://github.com/stdlib-js/array-base-filter/actions/workflows/test.yml/badge.svg?branch=v0.2.1
213
- [test-url]: https://github.com/stdlib-js/array-base-filter/actions/workflows/test.yml?query=branch:v0.2.1
212
+ [test-image]: https://github.com/stdlib-js/array-base-filter/actions/workflows/test.yml/badge.svg?branch=v0.2.2
213
+ [test-url]: https://github.com/stdlib-js/array-base-filter/actions/workflows/test.yml?query=branch:v0.2.2
214
214
 
215
215
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-filter/main.svg
216
216
  [coverage-url]: https://codecov.io/github/stdlib-js/array-base-filter?branch=main
@@ -247,8 +247,8 @@ declare function filter<T = unknown, U = unknown>( x: Uint8ClampedArray, predica
247
247
  *
248
248
  * @example
249
249
  * var isPositiveNumber = require( '@stdlib/assert-is-positive-number' ).isPrimitive;
250
- * var real = require( '@stdlib/complex-real' );
251
- * var imag = require( '@stdlib/complex-imag' );
250
+ * var real = require( '@stdlib/complex-float64-real' );
251
+ * var imag = require( '@stdlib/complex-float64-imag' );
252
252
  * var Complex128Array = require( '@stdlib/array-complex128' );
253
253
  *
254
254
  * function predicate( v ) {
@@ -272,8 +272,8 @@ declare function filter<T = unknown, U = unknown>( x: Complex128Array, predicate
272
272
  *
273
273
  * @example
274
274
  * var isPositiveNumber = require( '@stdlib/assert-is-positive-number' ).isPrimitive;
275
- * var realf = require( '@stdlib/complex-realf' );
276
- * var imagf = require( '@stdlib/complex-imagf' );
275
+ * var realf = require( '@stdlib/complex-float32-real' );
276
+ * var imagf = require( '@stdlib/complex-float32-imag' );
277
277
  * var Complex64Array = require( '@stdlib/array-complex64' );
278
278
  *
279
279
  * function predicate( v ) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/array-base-filter",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Return a shallow copy of an array containing only those elements which pass a test implemented by a predicate function.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {