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 Sep 21, 2024
1 parent c4d8d46 commit bdb0476
Show file tree
Hide file tree
Showing 33 changed files with 184 additions and 181 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<section class="release" id="unreleased">

## Unreleased (2024-09-18)
## Unreleased (2024-09-21)

<section class="packages">

Expand Down Expand Up @@ -245,6 +245,7 @@ A total of 5 people contributed to this release. Thank you to the following cont

<details>

- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
- [`20dea8a`](https://github.com/stdlib-js/stdlib/commit/20dea8af2b14181aa75354f7e3aeb65b955904b9) - **docs:** remove extraneous newline _(by Athan Reines)_
- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
- [`31fd427`](https://github.com/stdlib-js/stdlib/commit/31fd42744ec5d7073041f97c6f72350b8005c0fc) - **style:** remove unwanted empty lines _(by Philipp Burckhardt)_
Expand Down
4 changes: 2 additions & 2 deletions base/accessor-getter/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

An accessor function accepts the following arguments:

- arr: input array
- idx: element index
- arr: input array.
- idx: element index.

If provided an unsupported `dtype`, the function returns a default accessor
function for accessing elements from any indexed array-like object
Expand Down
6 changes: 3 additions & 3 deletions base/accessor-setter/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

An accessor function accepts the following arguments:

- arr: input array
- idx: element index
- value: value to set
- arr: input array.
- idx: element index.
- value: value to set.

If provided an unsupported `dtype`, the function returns a default accessor
function for accessing elements in any indexed array-like object supporting
Expand Down
13 changes: 7 additions & 6 deletions base/cunone-by-right/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@

{{alias}}( x, predicate[, thisArg] )
Cumulatively tests whether no array element in a provided array passes a
test implemented by a predicate function, while iterating from
right-to-left.

The predicate function is provided three arguments:

- `value`: current array element.
- `index`: current array element index.
- `arr`: the input array.
- value: current array element.
- index: current array element index.
- arr: the input array.

Parameters
----------
Expand Down Expand Up @@ -40,9 +41,9 @@

The predicate function is provided three arguments:

- `value`: current array element.
- `index`: current array element index.
- `arr`: the input array.
- value: current array element.
- index: current array element index.
- arr: the input array.

Parameters
----------
Expand Down
6 changes: 3 additions & 3 deletions base/cunone-by/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

The predicate function is provided three arguments:

- `value`: current array element.
- `index`: current array element index.
- `arr`: the input array.
- value: current array element.
- index: current array element index.
- arr: the input array.

Parameters
----------
Expand Down
15 changes: 8 additions & 7 deletions base/cusome-by-right/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@

{{alias}}( x, n, predicate[, thisArg] )
Cumulatively test whether at least `n` elements in a provided array pass a
Cumulatively tests whether at least `n` elements in a provided array pass a
test implemented by a predicate function, while iterating from
right-to-left.

The predicate function is provided three arguments:

- `value`: current array element.
- `index`: current array element index.
- `arr`: the input array.
- value: current array element.
- index: current array element index.
- arr: the input array.

Parameters
----------
Expand Down Expand Up @@ -43,9 +44,9 @@

The predicate function is provided three arguments:

- `value`: current array element.
- `index`: current array element index.
- `arr`: the input array.
- value: current array element.
- index: current array element index.
- arr: the input array.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions base/getter/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

An accessor function accepts the following arguments:

- arr: input array
- idx: element index
- arr: input array.
- idx: element index.

If provided an unsupported `dtype`, the function returns a default accessor
function for accessing elements from any indexed array-like object.
Expand Down
4 changes: 2 additions & 2 deletions base/resolve-getter/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

An accessor function accepts the following arguments:

- arr: input array
- idx: element index
- arr: input array.
- idx: element index.

If provided an array-like object having an unsupported data type, the
function returns a default accessor function for accessing elements from
Expand Down
6 changes: 3 additions & 3 deletions base/resolve-setter/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

An accessor function accepts the following arguments:

- arr: input array
- idx: element index
- value: value to set
- arr: input array.
- idx: element index.
- value: value to set.

If provided an array-like object having an unsupported data type, the
function returns a default accessor function for accessing elements in any
Expand Down
6 changes: 3 additions & 3 deletions base/setter/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

An accessor function accepts the following arguments:

- arr: input array
- idx: element index
- value: value to set
- arr: input array.
- idx: element index.
- value: value to set.

If provided an unsupported `dtype`, the function returns a default accessor
function for accessing elements in any indexed array-like object.
Expand Down
6 changes: 3 additions & 3 deletions base/unary2d-by/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

The callback function is provided the following arguments:

- value: array element
- indices: current array element indices
- arrays: input and output arrays
- value: array element.
- indices: current array element indices.
- arrays: input and output arrays.

If the callback function does not return any value (or equivalently,
explicitly returns `undefined`), the value is ignored.
Expand Down
4 changes: 2 additions & 2 deletions from-iterator/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

When invoked, an input function is provided two arguments:

- value: iterated value
- index: iterated value index (zero-based)
- value: iterated value.
- index: iterated value index (zero-based).

If provided an output array, the function fills the output array with
iterated values.
Expand Down
10 changes: 5 additions & 5 deletions nans-like/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

The function supports the following data types:

- float64: double-precision floating-point numbers (IEEE 754)
- float32: single-precision floating-point numbers (IEEE 754)
- complex128: double-precision complex floating-point numbers
- complex64: single-precision complex floating-point numbers
- generic: generic JavaScript values
- float64: double-precision floating-point numbers (IEEE 754).
- float32: single-precision floating-point numbers (IEEE 754).
- complex128: double-precision complex floating-point numbers.
- complex64: single-precision complex floating-point numbers.
- generic: generic JavaScript values.

Parameters
----------
Expand Down
24 changes: 12 additions & 12 deletions one-to-like/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@

The function supports the following data types:

- float64: double-precision floating-point numbers (IEEE 754)
- float32: single-precision floating-point numbers (IEEE 754)
- complex128: double-precision complex floating-point numbers
- complex64: single-precision complex floating-point numbers
- int32: 32-bit two's complement signed integers
- uint32: 32-bit unsigned integers
- int16: 16-bit two's complement signed integers
- uint16: 16-bit unsigned integers
- int8: 8-bit two's complement signed integers
- uint8: 8-bit unsigned integers
- uint8c: 8-bit unsigned integers clamped to 0-255
- generic: generic JavaScript values
- float64: double-precision floating-point numbers (IEEE 754).
- float32: single-precision floating-point numbers (IEEE 754).
- complex128: double-precision complex floating-point numbers.
- complex64: single-precision complex floating-point numbers.
- int32: 32-bit two's complement signed integers.
- uint32: 32-bit unsigned integers.
- int16: 16-bit two's complement signed integers.
- uint16: 16-bit unsigned integers.
- int8: 8-bit two's complement signed integers.
- uint8: 8-bit unsigned integers.
- uint8c: 8-bit unsigned integers clamped to 0-255.
- generic: generic JavaScript values.

Parameters
----------
Expand Down
24 changes: 12 additions & 12 deletions one-to/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@

The function supports the following data types:

- float64: double-precision floating-point numbers (IEEE 754)
- float32: single-precision floating-point numbers (IEEE 754)
- complex128: double-precision complex floating-point numbers
- complex64: single-precision complex floating-point numbers
- int32: 32-bit two's complement signed integers
- uint32: 32-bit unsigned integers
- int16: 16-bit two's complement signed integers
- uint16: 16-bit unsigned integers
- int8: 8-bit two's complement signed integers
- uint8: 8-bit unsigned integers
- uint8c: 8-bit unsigned integers clamped to 0-255
- generic: generic JavaScript values
- float64: double-precision floating-point numbers (IEEE 754).
- float32: single-precision floating-point numbers (IEEE 754).
- complex128: double-precision complex floating-point numbers.
- complex64: single-precision complex floating-point numbers.
- int32: 32-bit two's complement signed integers.
- uint32: 32-bit unsigned integers.
- int16: 16-bit two's complement signed integers.
- uint16: 16-bit unsigned integers.
- int8: 8-bit two's complement signed integers.
- uint8: 8-bit unsigned integers.
- uint8c: 8-bit unsigned integers clamped to 0-255.
- generic: generic JavaScript values.

The default array data type is `float64`.

Expand Down
24 changes: 12 additions & 12 deletions ones-like/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@

The function supports the following data types:

- float64: double-precision floating-point numbers (IEEE 754)
- float32: single-precision floating-point numbers (IEEE 754)
- complex128: double-precision complex floating-point numbers
- complex64: single-precision complex floating-point numbers
- int32: 32-bit two's complement signed integers
- uint32: 32-bit unsigned integers
- int16: 16-bit two's complement signed integers
- uint16: 16-bit unsigned integers
- int8: 8-bit two's complement signed integers
- uint8: 8-bit unsigned integers
- uint8c: 8-bit unsigned integers clamped to 0-255
- generic: generic JavaScript values
- float64: double-precision floating-point numbers (IEEE 754).
- float32: single-precision floating-point numbers (IEEE 754).
- complex128: double-precision complex floating-point numbers.
- complex64: single-precision complex floating-point numbers.
- int32: 32-bit two's complement signed integers.
- uint32: 32-bit unsigned integers.
- int16: 16-bit two's complement signed integers.
- uint16: 16-bit unsigned integers.
- int8: 8-bit two's complement signed integers.
- uint8: 8-bit unsigned integers.
- uint8c: 8-bit unsigned integers clamped to 0-255.
- generic: generic JavaScript values.

Parameters
----------
Expand Down
24 changes: 12 additions & 12 deletions ones/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@

The function supports the following data types:

- float64: double-precision floating-point numbers (IEEE 754)
- float32: single-precision floating-point numbers (IEEE 754)
- complex128: double-precision complex floating-point numbers
- complex64: single-precision complex floating-point numbers
- int32: 32-bit two's complement signed integers
- uint32: 32-bit unsigned integers
- int16: 16-bit two's complement signed integers
- uint16: 16-bit unsigned integers
- int8: 8-bit two's complement signed integers
- uint8: 8-bit unsigned integers
- uint8c: 8-bit unsigned integers clamped to 0-255
- generic: generic JavaScript values
- float64: double-precision floating-point numbers (IEEE 754).
- float32: single-precision floating-point numbers (IEEE 754).
- complex128: double-precision complex floating-point numbers.
- complex64: single-precision complex floating-point numbers.
- int32: 32-bit two's complement signed integers.
- uint32: 32-bit unsigned integers.
- int16: 16-bit two's complement signed integers.
- uint16: 16-bit unsigned integers.
- int8: 8-bit two's complement signed integers.
- uint8: 8-bit unsigned integers.
- uint8c: 8-bit unsigned integers clamped to 0-255.
- generic: generic JavaScript values.

The default array data type is `float64`.

Expand Down
4 changes: 2 additions & 2 deletions reviver/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
The serialization format for typed array is an object having the following
fields:

- type: typed array type (e.g., "Float64Array", "Int8Array")
- data: typed array data as an array of numbers
- type: typed array type (e.g., "Float64Array", "Int8Array").
- data: typed array data as an array of numbers.

Parameters
----------
Expand Down
8 changes: 4 additions & 4 deletions to-circular-iterator/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

When invoked, an input function is provided four arguments:

- value: iterated value
- index: iterated value index
- n: iteration count
- src: source array-like object
- value: iterated value.
- index: iterated value index.
- n: iteration count.
- src: source array-like object.

If an environment supports Symbol.iterator, the returned iterator is
iterable.
Expand Down
6 changes: 3 additions & 3 deletions to-iterator-right/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

When invoked, an input function is provided three arguments:

- value: iterated value
- index: iterated value index
- src: source array-like object
- value: iterated value.
- index: iterated value index.
- src: source array-like object.

If an environment supports Symbol.iterator, the returned iterator is
iterable.
Expand Down
6 changes: 3 additions & 3 deletions to-iterator/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

When invoked, an input function is provided three arguments:

- value: iterated value
- index: iterated value index
- src: source array-like object
- value: iterated value.
- index: iterated value index.
- src: source array-like object.

If an environment supports Symbol.iterator, the returned iterator is
iterable.
Expand Down
4 changes: 2 additions & 2 deletions to-json/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

The returned JSON object has the following properties:

- type: typed array type
- data: typed array data as a generic array
- type: typed array type.
- data: typed array data as a generic array.

The implementation supports custom typed arrays and sets the `type` field to
the closest known typed array type.
Expand Down
Loading

0 comments on commit bdb0476

Please sign in to comment.