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 Dec 31, 2023
1 parent b040f3d commit d4e6efa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ The namespace exports the following:
- <span class="signature">[`accessors( x )`][@stdlib/array/base/accessors]</span><span class="delimiter">: </span><span class="description">return element accessors for a provided array-like object.</span>
- <span class="signature">[`arraylike2object( x )`][@stdlib/array/base/arraylike2object]</span><span class="delimiter">: </span><span class="description">convert an array-like object to an object likely to have the same "shape".</span>
- <span class="signature">[`assert`][@stdlib/array/base/assert]</span><span class="delimiter">: </span><span class="description">base array assertion utilities.</span>
- <span class="signature">[`bifurcateEntries( x, filter )`][@stdlib/array/base/bifurcate-entries]</span><span class="delimiter">: </span><span class="description">split array element entries into two groups.</span>
- <span class="signature">[`bifurcateIndices( x, filter )`][@stdlib/array/base/bifurcate-indices]</span><span class="delimiter">: </span><span class="description">split array element indices into two groups.</span>
- <span class="signature">[`bifurcateValues( x, filter )`][@stdlib/array/base/bifurcate-values]</span><span class="delimiter">: </span><span class="description">split array element values into two groups.</span>
- <span class="signature">[`binary2d( arrays, shape, fcn )`][@stdlib/array/base/binary2d]</span><span class="delimiter">: </span><span class="description">apply a binary callback to elements in two two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
- <span class="signature">[`binary3d( arrays, shape, fcn )`][@stdlib/array/base/binary3d]</span><span class="delimiter">: </span><span class="description">apply a binary callback to elements in two three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.</span>
- <span class="signature">[`binary4d( arrays, shape, fcn )`][@stdlib/array/base/binary4d]</span><span class="delimiter">: </span><span class="description">apply a binary callback to elements in two four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.</span>
Expand Down Expand Up @@ -224,6 +227,12 @@ console.log( objectKeys( ns ) );

[@stdlib/array/base/assert]: https://github.com/stdlib-js/array/tree/main/base/assert

[@stdlib/array/base/bifurcate-entries]: https://github.com/stdlib-js/array/tree/main/base/bifurcate-entries

[@stdlib/array/base/bifurcate-indices]: https://github.com/stdlib-js/array/tree/main/base/bifurcate-indices

[@stdlib/array/base/bifurcate-values]: https://github.com/stdlib-js/array/tree/main/base/bifurcate-values

[@stdlib/array/base/binary2d]: https://github.com/stdlib-js/array/tree/main/base/binary2d

[@stdlib/array/base/binary3d]: https://github.com/stdlib-js/array/tree/main/base/binary3d
Expand Down

0 comments on commit d4e6efa

Please sign in to comment.