diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0037bdbc..e4a7c7c6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2021 The Stdlib Authors. +# Copyright (c) 2023 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -46,7 +46,7 @@ jobs: publish: # Define display name: - name: 'Publish package to npm' + name: 'Publish top-level package to npm' # Define the type of virtual host machine on which to run the job: runs-on: ubuntu-latest @@ -103,54 +103,6 @@ jobs: SLUG=${{ github.repository }} git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$SLUG.git" --follow-tags - # Remove CLI: - - name: 'Remove CLI' - if: ${{ github.ref == 'refs/heads/main' }} - run: | - # Exit if the package does not have a CLI: - if ! grep -q '"bin":' package.json; then - exit 0 - fi - rm -rf ./bin/cli - rm -f test/test.cli.js - rm -f etc/cli_opts.json - rm -f docs/usage.txt - - # For all dependencies, check in all *.js files if they are still used; if not, remove them: - jq -r '.dependencies | keys[]' ./package.json | while read -r dep; do - dep=$(echo "$dep" | xargs) - if ! grep -q "$dep" lib/** && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then - jq --indent 2 "del(.dependencies[\"$dep\"])" ./package.json > ./package.json.tmp - mv ./package.json.tmp ./package.json - fi - done - jq -r '.devDependencies | keys[]' ./package.json | while read -r dep; do - if [[ "$dep" != "@stdlib"* ]]; then - continue - fi - dep=$(echo "$dep" | xargs) - if ! grep -q "$dep" lib/** && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then - jq --indent 2 "del(.devDependencies[\"$dep\"])" ./package.json > ./package.json.tmp - mv ./package.json.tmp ./package.json - fi - done - - # Remove CLI section: - find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?
[\s\S]+?<\!\-\- \/.cli \-\->//" - - # Remove CLI from package.json: - jq -r 'del(.bin)' package.json > package.json.tmp - mv package.json.tmp package.json - - # Add entry for CLI package to See Also section of README.md: - cliPkgName=$(jq -r '.name' package.json)-cli - escapedPkg=$(echo "$cliPkgName" | sed -e 's/\//\\\//g') - escapedPkg=$(echo "$escapedPkg" | sed -e 's/\@/\\\@/g') - find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/
(?:\n\n\* \* \*\n\n## See Also\n\n)?/
\n\n## See Also\n\n- [\`$escapedPkg\`][$escapedPkg]<\/span>: <\/span>CLI package for use as a command-line utility.<\/span>\n/" - - # Add link definition for CLI package to README.md: - find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/
/
\n\n[$escapedPkg]: https:\/\/www.npmjs.com\/package\/$escapedPkg/" - # Replace GitHub MathJax equations with SVGs: - name: 'Replace GitHub MathJax equations with SVGs' run: | diff --git a/README.md b/README.md index ae6f496f..1309f6a0 100644 --- a/README.md +++ b/README.md @@ -154,8 +154,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors]. [npm-image]: http://img.shields.io/npm/v/@stdlib/strided.svg [npm-url]: https://npmjs.org/package/@stdlib/strided -[test-image]: https://github.com/stdlib-js/strided/actions/workflows/test.yml/badge.svg?branch=v0.1.1 -[test-url]: https://github.com/stdlib-js/strided/actions/workflows/test.yml?query=branch:v0.1.1 +[test-image]: https://github.com/stdlib-js/strided/actions/workflows/test.yml/badge.svg?branch=main +[test-url]: https://github.com/stdlib-js/strided/actions/workflows/test.yml?query=branch:main [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/strided/main.svg [coverage-url]: https://codecov.io/github/stdlib-js/strided?branch=main diff --git a/base/binary-dtype-signatures/README.md b/base/binary-dtype-signatures/README.md index 8f61e180..e72f7aac 100644 --- a/base/binary-dtype-signatures/README.md +++ b/base/binary-dtype-signatures/README.md @@ -142,6 +142,12 @@ console.log( str ); @@ -152,7 +158,13 @@ console.log( str ); [@stdlib/strided/dtypes]: https://github.com/stdlib-js/strided/tree/main/dtypes -[@stdlib/ndarray/promotion-rules]: https://github.com/stdlib-js/stdlib +[@stdlib/ndarray/promotion-rules]: https://github.com/stdlib-js/ndarray-promotion-rules + + + +[@stdlib/strided/base/binary-signature-callbacks]: https://github.com/stdlib-js/strided/tree/main/base/binary-signature-callbacks + +
diff --git a/base/binary-signature-callbacks/README.md b/base/binary-signature-callbacks/README.md index 52e2637f..4ddbd333 100644 --- a/base/binary-signature-callbacks/README.md +++ b/base/binary-signature-callbacks/README.md @@ -151,6 +151,12 @@ var clbks = callbacks( table, sigs ); @@ -159,7 +165,13 @@ var clbks = callbacks( table, sigs ); diff --git a/base/binary/README.md b/base/binary/README.md index 9ef682d7..900328f8 100644 --- a/base/binary/README.md +++ b/base/binary/README.md @@ -310,7 +310,7 @@ z[ i ] = (double)out; -#### stdlib_strided_bb_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -351,7 +351,7 @@ The function accepts the following arguments: void stdlib_strided_bb_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -392,7 +392,7 @@ The function accepts the following arguments: void stdlib_strided_bb_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -434,7 +434,7 @@ The function accepts the following arguments: void stdlib_strided_bb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -476,7 +476,7 @@ The function accepts the following arguments: void stdlib_strided_bb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -517,7 +517,7 @@ The function accepts the following arguments: void stdlib_strided_bb_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -558,7 +558,7 @@ The function accepts the following arguments: void stdlib_strided_bb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -599,7 +599,7 @@ The function accepts the following arguments: void stdlib_strided_bb_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -640,7 +640,7 @@ The function accepts the following arguments: void stdlib_strided_bb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -681,7 +681,7 @@ The function accepts the following arguments: void stdlib_strided_bb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -722,7 +722,7 @@ The function accepts the following arguments: void stdlib_strided_bb_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -763,7 +763,7 @@ The function accepts the following arguments: void stdlib_strided_bb_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -804,7 +804,7 @@ The function accepts the following arguments: void stdlib_strided_bb_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_k_as_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_k_as_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -845,7 +845,7 @@ The function accepts the following arguments: void stdlib_strided_bb_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -886,7 +886,7 @@ The function accepts the following arguments: void stdlib_strided_bb_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_t_as_tt_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_t_as_tt_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -927,7 +927,7 @@ The function accepts the following arguments: void stdlib_strided_bb_t_as_tt_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -968,7 +968,7 @@ The function accepts the following arguments: void stdlib_strided_bb_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_u_as_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_u_as_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1009,7 +1009,7 @@ The function accepts the following arguments: void stdlib_strided_bb_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1050,7 +1050,7 @@ The function accepts the following arguments: void stdlib_strided_bb_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bb_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bb_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1092,7 +1092,7 @@ The function accepts the following arguments: void stdlib_strided_bb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bc_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bc_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1134,7 +1134,7 @@ The function accepts the following arguments: void stdlib_strided_bc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bc_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bc_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1176,7 +1176,7 @@ The function accepts the following arguments: void stdlib_strided_bc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1218,7 +1218,7 @@ The function accepts the following arguments: void stdlib_strided_bc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bd_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bd_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1259,7 +1259,7 @@ The function accepts the following arguments: void stdlib_strided_bd_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bd_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bd_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1301,7 +1301,7 @@ The function accepts the following arguments: void stdlib_strided_bd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bf_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bf_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1343,7 +1343,7 @@ The function accepts the following arguments: void stdlib_strided_bf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bf_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bf_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1385,7 +1385,7 @@ The function accepts the following arguments: void stdlib_strided_bf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bf_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bf_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1426,7 +1426,7 @@ The function accepts the following arguments: void stdlib_strided_bf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bf_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bf_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1467,7 +1467,7 @@ The function accepts the following arguments: void stdlib_strided_bf_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bf_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bf_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1508,7 +1508,7 @@ The function accepts the following arguments: void stdlib_strided_bf_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bf_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bf_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1550,7 +1550,7 @@ The function accepts the following arguments: void stdlib_strided_bf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bi_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bi_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1591,7 +1591,7 @@ The function accepts the following arguments: void stdlib_strided_bi_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bi_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bi_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1632,7 +1632,7 @@ The function accepts the following arguments: void stdlib_strided_bi_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bi_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bi_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1674,7 +1674,7 @@ The function accepts the following arguments: void stdlib_strided_bi_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bk_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bk_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1716,7 +1716,7 @@ The function accepts the following arguments: void stdlib_strided_bk_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bk_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bk_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1758,7 +1758,7 @@ The function accepts the following arguments: void stdlib_strided_bk_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bk_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bk_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1799,7 +1799,7 @@ The function accepts the following arguments: void stdlib_strided_bk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bk_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bk_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1840,7 +1840,7 @@ The function accepts the following arguments: void stdlib_strided_bk_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bk_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bk_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1881,7 +1881,7 @@ The function accepts the following arguments: void stdlib_strided_bk_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bk_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bk_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1922,7 +1922,7 @@ The function accepts the following arguments: void stdlib_strided_bk_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bk_k_as_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bk_k_as_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1963,7 +1963,7 @@ The function accepts the following arguments: void stdlib_strided_bk_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bk_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bk_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2005,7 +2005,7 @@ The function accepts the following arguments: void stdlib_strided_bk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bs_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bs_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2047,7 +2047,7 @@ The function accepts the following arguments: void stdlib_strided_bs_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bs_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bs_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2089,7 +2089,7 @@ The function accepts the following arguments: void stdlib_strided_bs_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bs_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bs_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2130,7 +2130,7 @@ The function accepts the following arguments: void stdlib_strided_bs_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bs_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bs_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2171,7 +2171,7 @@ The function accepts the following arguments: void stdlib_strided_bs_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bs_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bs_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2212,7 +2212,7 @@ The function accepts the following arguments: void stdlib_strided_bs_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bs_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bs_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2253,7 +2253,7 @@ The function accepts the following arguments: void stdlib_strided_bs_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bs_k_as_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bs_k_as_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2294,7 +2294,7 @@ The function accepts the following arguments: void stdlib_strided_bs_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bs_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bs_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2336,7 +2336,7 @@ The function accepts the following arguments: void stdlib_strided_bs_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2378,7 +2378,7 @@ The function accepts the following arguments: void stdlib_strided_bt_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2420,7 +2420,7 @@ The function accepts the following arguments: void stdlib_strided_bt_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2461,7 +2461,7 @@ The function accepts the following arguments: void stdlib_strided_bt_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2502,7 +2502,7 @@ The function accepts the following arguments: void stdlib_strided_bt_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2543,7 +2543,7 @@ The function accepts the following arguments: void stdlib_strided_bt_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2584,7 +2584,7 @@ The function accepts the following arguments: void stdlib_strided_bt_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_t_as_tt_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_t_as_tt_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2625,7 +2625,7 @@ The function accepts the following arguments: void stdlib_strided_bt_t_as_tt_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_u_as_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_u_as_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2666,7 +2666,7 @@ The function accepts the following arguments: void stdlib_strided_bt_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bt_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bt_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2708,7 +2708,7 @@ The function accepts the following arguments: void stdlib_strided_bt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bu_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bu_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2749,7 +2749,7 @@ The function accepts the following arguments: void stdlib_strided_bu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bu_u_as_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bu_u_as_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2790,7 +2790,7 @@ The function accepts the following arguments: void stdlib_strided_bu_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bu_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bu_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2832,7 +2832,7 @@ The function accepts the following arguments: void stdlib_strided_bu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_bz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_bz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2874,7 +2874,7 @@ The function accepts the following arguments: void stdlib_strided_bz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cb_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cb_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2916,7 +2916,7 @@ The function accepts the following arguments: void stdlib_strided_cb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cb_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cb_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2958,7 +2958,7 @@ The function accepts the following arguments: void stdlib_strided_cb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cb_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cb_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3000,7 +3000,7 @@ The function accepts the following arguments: void stdlib_strided_cb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3042,7 +3042,7 @@ The function accepts the following arguments: void stdlib_strided_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cc_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cc_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3084,7 +3084,7 @@ The function accepts the following arguments: void stdlib_strided_cc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cc_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cc_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3126,7 +3126,7 @@ The function accepts the following arguments: void stdlib_strided_cc_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3168,7 +3168,7 @@ The function accepts the following arguments: void stdlib_strided_cc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cd_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cd_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3210,7 +3210,7 @@ The function accepts the following arguments: void stdlib_strided_cd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cf_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cf_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3252,7 +3252,7 @@ The function accepts the following arguments: void stdlib_strided_cf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cf_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cf_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3294,7 +3294,7 @@ The function accepts the following arguments: void stdlib_strided_cf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cf_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cf_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3336,7 +3336,7 @@ The function accepts the following arguments: void stdlib_strided_cf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ci_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ci_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3378,7 +3378,7 @@ The function accepts the following arguments: void stdlib_strided_ci_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ck_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ck_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3420,7 +3420,7 @@ The function accepts the following arguments: void stdlib_strided_ck_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ck_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ck_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3462,7 +3462,7 @@ The function accepts the following arguments: void stdlib_strided_ck_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ck_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ck_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3504,7 +3504,7 @@ The function accepts the following arguments: void stdlib_strided_ck_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cs_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cs_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3546,7 +3546,7 @@ The function accepts the following arguments: void stdlib_strided_cs_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cs_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cs_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3588,7 +3588,7 @@ The function accepts the following arguments: void stdlib_strided_cs_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cs_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cs_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3630,7 +3630,7 @@ The function accepts the following arguments: void stdlib_strided_cs_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ct_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ct_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3672,7 +3672,7 @@ The function accepts the following arguments: void stdlib_strided_ct_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ct_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ct_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3714,7 +3714,7 @@ The function accepts the following arguments: void stdlib_strided_ct_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ct_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ct_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3756,7 +3756,7 @@ The function accepts the following arguments: void stdlib_strided_ct_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cu_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cu_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3798,7 +3798,7 @@ The function accepts the following arguments: void stdlib_strided_cu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_cz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_cz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3840,7 +3840,7 @@ The function accepts the following arguments: void stdlib_strided_cz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_db_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_db_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3881,7 +3881,7 @@ The function accepts the following arguments: void stdlib_strided_db_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_db_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_db_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3923,7 +3923,7 @@ The function accepts the following arguments: void stdlib_strided_db_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3965,7 +3965,7 @@ The function accepts the following arguments: void stdlib_strided_dc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4006,7 +4006,7 @@ The function accepts the following arguments: void stdlib_strided_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dd_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dd_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4047,7 +4047,7 @@ The function accepts the following arguments: void stdlib_strided_dd_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dd_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dd_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4089,7 +4089,7 @@ The function accepts the following arguments: void stdlib_strided_dd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_df_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_df_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4130,7 +4130,7 @@ The function accepts the following arguments: void stdlib_strided_df_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_df_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_df_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4172,7 +4172,7 @@ The function accepts the following arguments: void stdlib_strided_df_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_di_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_di_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4213,7 +4213,7 @@ The function accepts the following arguments: void stdlib_strided_di_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_di_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_di_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4255,7 +4255,7 @@ The function accepts the following arguments: void stdlib_strided_di_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dk_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dk_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4296,7 +4296,7 @@ The function accepts the following arguments: void stdlib_strided_dk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dk_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dk_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4338,7 +4338,7 @@ The function accepts the following arguments: void stdlib_strided_dk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ds_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ds_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4379,7 +4379,7 @@ The function accepts the following arguments: void stdlib_strided_ds_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ds_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ds_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4421,7 +4421,7 @@ The function accepts the following arguments: void stdlib_strided_ds_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dt_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dt_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4462,7 +4462,7 @@ The function accepts the following arguments: void stdlib_strided_dt_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dt_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dt_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4504,7 +4504,7 @@ The function accepts the following arguments: void stdlib_strided_dt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_du_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_du_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4545,7 +4545,7 @@ The function accepts the following arguments: void stdlib_strided_du_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_du_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_du_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4587,7 +4587,7 @@ The function accepts the following arguments: void stdlib_strided_du_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_dz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_dz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4629,7 +4629,7 @@ The function accepts the following arguments: void stdlib_strided_dz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fb_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fb_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4671,7 +4671,7 @@ The function accepts the following arguments: void stdlib_strided_fb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fb_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fb_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4713,7 +4713,7 @@ The function accepts the following arguments: void stdlib_strided_fb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fb_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fb_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4754,7 +4754,7 @@ The function accepts the following arguments: void stdlib_strided_fb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fb_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fb_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4795,7 +4795,7 @@ The function accepts the following arguments: void stdlib_strided_fb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fb_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fb_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4836,7 +4836,7 @@ The function accepts the following arguments: void stdlib_strided_fb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fb_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fb_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4878,7 +4878,7 @@ The function accepts the following arguments: void stdlib_strided_fb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fc_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fc_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4920,7 +4920,7 @@ The function accepts the following arguments: void stdlib_strided_fc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fc_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fc_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4962,7 +4962,7 @@ The function accepts the following arguments: void stdlib_strided_fc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5004,7 +5004,7 @@ The function accepts the following arguments: void stdlib_strided_fc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fd_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fd_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5045,7 +5045,7 @@ The function accepts the following arguments: void stdlib_strided_fd_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fd_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fd_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5087,7 +5087,7 @@ The function accepts the following arguments: void stdlib_strided_fd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5128,7 +5128,7 @@ The function accepts the following arguments: void stdlib_strided_ff_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5170,7 +5170,7 @@ The function accepts the following arguments: void stdlib_strided_ff_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5212,7 +5212,7 @@ The function accepts the following arguments: void stdlib_strided_ff_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5253,7 +5253,7 @@ The function accepts the following arguments: void stdlib_strided_ff_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5294,7 +5294,7 @@ The function accepts the following arguments: void stdlib_strided_ff_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5335,7 +5335,7 @@ The function accepts the following arguments: void stdlib_strided_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5376,7 +5376,7 @@ The function accepts the following arguments: void stdlib_strided_ff_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5417,7 +5417,7 @@ The function accepts the following arguments: void stdlib_strided_ff_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ff_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ff_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5459,7 +5459,7 @@ The function accepts the following arguments: void stdlib_strided_ff_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fi_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fi_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5500,7 +5500,7 @@ The function accepts the following arguments: void stdlib_strided_fi_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fi_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fi_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5542,7 +5542,7 @@ The function accepts the following arguments: void stdlib_strided_fi_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fk_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fk_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5584,7 +5584,7 @@ The function accepts the following arguments: void stdlib_strided_fk_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fk_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fk_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5626,7 +5626,7 @@ The function accepts the following arguments: void stdlib_strided_fk_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fk_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fk_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5667,7 +5667,7 @@ The function accepts the following arguments: void stdlib_strided_fk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fk_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fk_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5708,7 +5708,7 @@ The function accepts the following arguments: void stdlib_strided_fk_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fk_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fk_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5749,7 +5749,7 @@ The function accepts the following arguments: void stdlib_strided_fk_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fk_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fk_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5791,7 +5791,7 @@ The function accepts the following arguments: void stdlib_strided_fk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fs_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fs_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5833,7 +5833,7 @@ The function accepts the following arguments: void stdlib_strided_fs_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fs_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fs_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5875,7 +5875,7 @@ The function accepts the following arguments: void stdlib_strided_fs_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fs_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fs_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5916,7 +5916,7 @@ The function accepts the following arguments: void stdlib_strided_fs_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fs_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fs_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5957,7 +5957,7 @@ The function accepts the following arguments: void stdlib_strided_fs_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fs_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fs_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5998,7 +5998,7 @@ The function accepts the following arguments: void stdlib_strided_fs_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fs_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fs_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6040,7 +6040,7 @@ The function accepts the following arguments: void stdlib_strided_fs_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ft_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ft_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6082,7 +6082,7 @@ The function accepts the following arguments: void stdlib_strided_ft_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ft_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ft_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6124,7 +6124,7 @@ The function accepts the following arguments: void stdlib_strided_ft_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ft_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ft_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6165,7 +6165,7 @@ The function accepts the following arguments: void stdlib_strided_ft_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ft_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ft_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6206,7 +6206,7 @@ The function accepts the following arguments: void stdlib_strided_ft_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ft_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ft_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6247,7 +6247,7 @@ The function accepts the following arguments: void stdlib_strided_ft_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ft_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ft_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6289,7 +6289,7 @@ The function accepts the following arguments: void stdlib_strided_ft_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fu_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fu_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6330,7 +6330,7 @@ The function accepts the following arguments: void stdlib_strided_fu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fu_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fu_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6372,7 +6372,7 @@ The function accepts the following arguments: void stdlib_strided_fu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_fz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_fz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6414,7 +6414,7 @@ The function accepts the following arguments: void stdlib_strided_fz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ib_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ib_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6455,7 +6455,7 @@ The function accepts the following arguments: void stdlib_strided_ib_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ib_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ib_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6496,7 +6496,7 @@ The function accepts the following arguments: void stdlib_strided_ib_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ib_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ib_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6538,7 +6538,7 @@ The function accepts the following arguments: void stdlib_strided_ib_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ic_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ic_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6580,7 +6580,7 @@ The function accepts the following arguments: void stdlib_strided_ic_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_id_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_id_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6621,7 +6621,7 @@ The function accepts the following arguments: void stdlib_strided_id_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_id_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_id_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6663,7 +6663,7 @@ The function accepts the following arguments: void stdlib_strided_id_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_if_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_if_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6704,7 +6704,7 @@ The function accepts the following arguments: void stdlib_strided_if_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_if_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_if_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6746,7 +6746,7 @@ The function accepts the following arguments: void stdlib_strided_if_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ii_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ii_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6787,7 +6787,7 @@ The function accepts the following arguments: void stdlib_strided_ii_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ii_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ii_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6828,7 +6828,7 @@ The function accepts the following arguments: void stdlib_strided_ii_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6869,7 +6869,7 @@ The function accepts the following arguments: void stdlib_strided_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ii_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ii_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6910,7 +6910,7 @@ The function accepts the following arguments: void stdlib_strided_ii_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ii_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ii_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6952,7 +6952,7 @@ The function accepts the following arguments: void stdlib_strided_ii_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ik_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ik_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6993,7 +6993,7 @@ The function accepts the following arguments: void stdlib_strided_ik_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ik_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ik_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7034,7 +7034,7 @@ The function accepts the following arguments: void stdlib_strided_ik_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ik_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ik_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7076,7 +7076,7 @@ The function accepts the following arguments: void stdlib_strided_ik_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_is_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_is_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7117,7 +7117,7 @@ The function accepts the following arguments: void stdlib_strided_is_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_is_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_is_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7158,7 +7158,7 @@ The function accepts the following arguments: void stdlib_strided_is_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_is_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_is_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7200,7 +7200,7 @@ The function accepts the following arguments: void stdlib_strided_is_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_it_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_it_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7241,7 +7241,7 @@ The function accepts the following arguments: void stdlib_strided_it_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_it_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_it_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7282,7 +7282,7 @@ The function accepts the following arguments: void stdlib_strided_it_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_it_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_it_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7324,7 +7324,7 @@ The function accepts the following arguments: void stdlib_strided_it_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_iu_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_iu_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7365,7 +7365,7 @@ The function accepts the following arguments: void stdlib_strided_iu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_iu_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_iu_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7407,7 +7407,7 @@ The function accepts the following arguments: void stdlib_strided_iu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_iz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_iz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7449,7 +7449,7 @@ The function accepts the following arguments: void stdlib_strided_iz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kb_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kb_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7491,7 +7491,7 @@ The function accepts the following arguments: void stdlib_strided_kb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kb_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kb_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7533,7 +7533,7 @@ The function accepts the following arguments: void stdlib_strided_kb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kb_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kb_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7574,7 +7574,7 @@ The function accepts the following arguments: void stdlib_strided_kb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kb_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kb_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7615,7 +7615,7 @@ The function accepts the following arguments: void stdlib_strided_kb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kb_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kb_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7656,7 +7656,7 @@ The function accepts the following arguments: void stdlib_strided_kb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kb_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kb_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7697,7 +7697,7 @@ The function accepts the following arguments: void stdlib_strided_kb_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kb_k_as_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kb_k_as_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7738,7 +7738,7 @@ The function accepts the following arguments: void stdlib_strided_kb_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kb_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kb_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7780,7 +7780,7 @@ The function accepts the following arguments: void stdlib_strided_kb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kc_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kc_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7822,7 +7822,7 @@ The function accepts the following arguments: void stdlib_strided_kc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kc_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kc_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7864,7 +7864,7 @@ The function accepts the following arguments: void stdlib_strided_kc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7906,7 +7906,7 @@ The function accepts the following arguments: void stdlib_strided_kc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kd_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kd_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7947,7 +7947,7 @@ The function accepts the following arguments: void stdlib_strided_kd_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kd_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kd_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -7989,7 +7989,7 @@ The function accepts the following arguments: void stdlib_strided_kd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kf_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kf_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8031,7 +8031,7 @@ The function accepts the following arguments: void stdlib_strided_kf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kf_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kf_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8073,7 +8073,7 @@ The function accepts the following arguments: void stdlib_strided_kf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kf_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kf_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8114,7 +8114,7 @@ The function accepts the following arguments: void stdlib_strided_kf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kf_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kf_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8155,7 +8155,7 @@ The function accepts the following arguments: void stdlib_strided_kf_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kf_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kf_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8196,7 +8196,7 @@ The function accepts the following arguments: void stdlib_strided_kf_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kf_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kf_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8238,7 +8238,7 @@ The function accepts the following arguments: void stdlib_strided_kf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ki_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ki_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8279,7 +8279,7 @@ The function accepts the following arguments: void stdlib_strided_ki_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ki_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ki_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8320,7 +8320,7 @@ The function accepts the following arguments: void stdlib_strided_ki_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ki_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ki_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8362,7 +8362,7 @@ The function accepts the following arguments: void stdlib_strided_ki_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8403,7 +8403,7 @@ The function accepts the following arguments: void stdlib_strided_kk_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8445,7 +8445,7 @@ The function accepts the following arguments: void stdlib_strided_kk_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8487,7 +8487,7 @@ The function accepts the following arguments: void stdlib_strided_kk_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8528,7 +8528,7 @@ The function accepts the following arguments: void stdlib_strided_kk_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8569,7 +8569,7 @@ The function accepts the following arguments: void stdlib_strided_kk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8610,7 +8610,7 @@ The function accepts the following arguments: void stdlib_strided_kk_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8651,7 +8651,7 @@ The function accepts the following arguments: void stdlib_strided_kk_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8692,7 +8692,7 @@ The function accepts the following arguments: void stdlib_strided_kk_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8733,7 +8733,7 @@ The function accepts the following arguments: void stdlib_strided_kk_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8774,7 +8774,7 @@ The function accepts the following arguments: void stdlib_strided_kk_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8815,7 +8815,7 @@ The function accepts the following arguments: void stdlib_strided_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8856,7 +8856,7 @@ The function accepts the following arguments: void stdlib_strided_kk_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kk_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kk_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8898,7 +8898,7 @@ The function accepts the following arguments: void stdlib_strided_kk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ks_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ks_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8940,7 +8940,7 @@ The function accepts the following arguments: void stdlib_strided_ks_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ks_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ks_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -8982,7 +8982,7 @@ The function accepts the following arguments: void stdlib_strided_ks_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ks_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ks_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9023,7 +9023,7 @@ The function accepts the following arguments: void stdlib_strided_ks_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ks_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ks_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9064,7 +9064,7 @@ The function accepts the following arguments: void stdlib_strided_ks_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ks_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ks_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9105,7 +9105,7 @@ The function accepts the following arguments: void stdlib_strided_ks_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ks_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ks_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9146,7 +9146,7 @@ The function accepts the following arguments: void stdlib_strided_ks_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ks_k_as_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ks_k_as_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9187,7 +9187,7 @@ The function accepts the following arguments: void stdlib_strided_ks_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ks_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ks_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9229,7 +9229,7 @@ The function accepts the following arguments: void stdlib_strided_ks_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kt_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kt_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9270,7 +9270,7 @@ The function accepts the following arguments: void stdlib_strided_kt_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kt_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kt_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9311,7 +9311,7 @@ The function accepts the following arguments: void stdlib_strided_kt_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kt_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kt_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9353,7 +9353,7 @@ The function accepts the following arguments: void stdlib_strided_kt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ku_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ku_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9394,7 +9394,7 @@ The function accepts the following arguments: void stdlib_strided_ku_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ku_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ku_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9436,7 +9436,7 @@ The function accepts the following arguments: void stdlib_strided_ku_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_kz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_kz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9478,7 +9478,7 @@ The function accepts the following arguments: void stdlib_strided_kz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sb_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sb_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9520,7 +9520,7 @@ The function accepts the following arguments: void stdlib_strided_sb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sb_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sb_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9562,7 +9562,7 @@ The function accepts the following arguments: void stdlib_strided_sb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sb_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sb_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9603,7 +9603,7 @@ The function accepts the following arguments: void stdlib_strided_sb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sb_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sb_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9644,7 +9644,7 @@ The function accepts the following arguments: void stdlib_strided_sb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sb_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sb_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9685,7 +9685,7 @@ The function accepts the following arguments: void stdlib_strided_sb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sb_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sb_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9726,7 +9726,7 @@ The function accepts the following arguments: void stdlib_strided_sb_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sb_k_as_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sb_k_as_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9767,7 +9767,7 @@ The function accepts the following arguments: void stdlib_strided_sb_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sb_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sb_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9809,7 +9809,7 @@ The function accepts the following arguments: void stdlib_strided_sb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sc_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sc_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9851,7 +9851,7 @@ The function accepts the following arguments: void stdlib_strided_sc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sc_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sc_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9893,7 +9893,7 @@ The function accepts the following arguments: void stdlib_strided_sc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9935,7 +9935,7 @@ The function accepts the following arguments: void stdlib_strided_sc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sd_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sd_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -9976,7 +9976,7 @@ The function accepts the following arguments: void stdlib_strided_sd_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sd_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sd_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10018,7 +10018,7 @@ The function accepts the following arguments: void stdlib_strided_sd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sf_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sf_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10060,7 +10060,7 @@ The function accepts the following arguments: void stdlib_strided_sf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sf_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sf_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10102,7 +10102,7 @@ The function accepts the following arguments: void stdlib_strided_sf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sf_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sf_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10143,7 +10143,7 @@ The function accepts the following arguments: void stdlib_strided_sf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sf_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sf_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10184,7 +10184,7 @@ The function accepts the following arguments: void stdlib_strided_sf_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sf_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sf_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10225,7 +10225,7 @@ The function accepts the following arguments: void stdlib_strided_sf_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sf_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sf_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10267,7 +10267,7 @@ The function accepts the following arguments: void stdlib_strided_sf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_si_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_si_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10308,7 +10308,7 @@ The function accepts the following arguments: void stdlib_strided_si_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_si_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_si_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10349,7 +10349,7 @@ The function accepts the following arguments: void stdlib_strided_si_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_si_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_si_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10391,7 +10391,7 @@ The function accepts the following arguments: void stdlib_strided_si_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sk_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sk_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10433,7 +10433,7 @@ The function accepts the following arguments: void stdlib_strided_sk_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sk_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sk_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10475,7 +10475,7 @@ The function accepts the following arguments: void stdlib_strided_sk_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sk_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sk_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10516,7 +10516,7 @@ The function accepts the following arguments: void stdlib_strided_sk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sk_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sk_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10557,7 +10557,7 @@ The function accepts the following arguments: void stdlib_strided_sk_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sk_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sk_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10598,7 +10598,7 @@ The function accepts the following arguments: void stdlib_strided_sk_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sk_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sk_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10639,7 +10639,7 @@ The function accepts the following arguments: void stdlib_strided_sk_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sk_k_as_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sk_k_as_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10680,7 +10680,7 @@ The function accepts the following arguments: void stdlib_strided_sk_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sk_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sk_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10722,7 +10722,7 @@ The function accepts the following arguments: void stdlib_strided_sk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10763,7 +10763,7 @@ The function accepts the following arguments: void stdlib_strided_ss_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10805,7 +10805,7 @@ The function accepts the following arguments: void stdlib_strided_ss_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10847,7 +10847,7 @@ The function accepts the following arguments: void stdlib_strided_ss_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10888,7 +10888,7 @@ The function accepts the following arguments: void stdlib_strided_ss_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10929,7 +10929,7 @@ The function accepts the following arguments: void stdlib_strided_ss_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -10970,7 +10970,7 @@ The function accepts the following arguments: void stdlib_strided_ss_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11011,7 +11011,7 @@ The function accepts the following arguments: void stdlib_strided_ss_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11052,7 +11052,7 @@ The function accepts the following arguments: void stdlib_strided_ss_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11093,7 +11093,7 @@ The function accepts the following arguments: void stdlib_strided_ss_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11134,7 +11134,7 @@ The function accepts the following arguments: void stdlib_strided_ss_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11175,7 +11175,7 @@ The function accepts the following arguments: void stdlib_strided_ss_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_k_as_kk_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_k_as_kk_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11216,7 +11216,7 @@ The function accepts the following arguments: void stdlib_strided_ss_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11257,7 +11257,7 @@ The function accepts the following arguments: void stdlib_strided_ss_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11298,7 +11298,7 @@ The function accepts the following arguments: void stdlib_strided_ss_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ss_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ss_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11340,7 +11340,7 @@ The function accepts the following arguments: void stdlib_strided_ss_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_st_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_st_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11381,7 +11381,7 @@ The function accepts the following arguments: void stdlib_strided_st_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_st_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_st_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11422,7 +11422,7 @@ The function accepts the following arguments: void stdlib_strided_st_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_st_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_st_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11464,7 +11464,7 @@ The function accepts the following arguments: void stdlib_strided_st_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_su_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_su_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11505,7 +11505,7 @@ The function accepts the following arguments: void stdlib_strided_su_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_su_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_su_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11547,7 +11547,7 @@ The function accepts the following arguments: void stdlib_strided_su_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_sz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_sz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11589,7 +11589,7 @@ The function accepts the following arguments: void stdlib_strided_sz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11631,7 +11631,7 @@ The function accepts the following arguments: void stdlib_strided_tb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11673,7 +11673,7 @@ The function accepts the following arguments: void stdlib_strided_tb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11714,7 +11714,7 @@ The function accepts the following arguments: void stdlib_strided_tb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11755,7 +11755,7 @@ The function accepts the following arguments: void stdlib_strided_tb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11796,7 +11796,7 @@ The function accepts the following arguments: void stdlib_strided_tb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11837,7 +11837,7 @@ The function accepts the following arguments: void stdlib_strided_tb_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_t_as_tt_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_t_as_tt_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11878,7 +11878,7 @@ The function accepts the following arguments: void stdlib_strided_tb_t_as_tt_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_u_as_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_u_as_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11919,7 +11919,7 @@ The function accepts the following arguments: void stdlib_strided_tb_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tb_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tb_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -11961,7 +11961,7 @@ The function accepts the following arguments: void stdlib_strided_tb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tc_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tc_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12003,7 +12003,7 @@ The function accepts the following arguments: void stdlib_strided_tc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tc_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tc_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12045,7 +12045,7 @@ The function accepts the following arguments: void stdlib_strided_tc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12087,7 +12087,7 @@ The function accepts the following arguments: void stdlib_strided_tc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_td_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_td_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12128,7 +12128,7 @@ The function accepts the following arguments: void stdlib_strided_td_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_td_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_td_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12170,7 +12170,7 @@ The function accepts the following arguments: void stdlib_strided_td_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tf_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tf_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12212,7 +12212,7 @@ The function accepts the following arguments: void stdlib_strided_tf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tf_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tf_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12254,7 +12254,7 @@ The function accepts the following arguments: void stdlib_strided_tf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tf_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tf_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12295,7 +12295,7 @@ The function accepts the following arguments: void stdlib_strided_tf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tf_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tf_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12336,7 +12336,7 @@ The function accepts the following arguments: void stdlib_strided_tf_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tf_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tf_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12377,7 +12377,7 @@ The function accepts the following arguments: void stdlib_strided_tf_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tf_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tf_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12419,7 +12419,7 @@ The function accepts the following arguments: void stdlib_strided_tf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ti_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ti_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12460,7 +12460,7 @@ The function accepts the following arguments: void stdlib_strided_ti_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ti_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ti_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12501,7 +12501,7 @@ The function accepts the following arguments: void stdlib_strided_ti_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ti_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ti_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12543,7 +12543,7 @@ The function accepts the following arguments: void stdlib_strided_ti_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tk_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tk_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12584,7 +12584,7 @@ The function accepts the following arguments: void stdlib_strided_tk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tk_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tk_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12625,7 +12625,7 @@ The function accepts the following arguments: void stdlib_strided_tk_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tk_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tk_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12667,7 +12667,7 @@ The function accepts the following arguments: void stdlib_strided_tk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ts_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ts_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12708,7 +12708,7 @@ The function accepts the following arguments: void stdlib_strided_ts_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ts_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ts_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12749,7 +12749,7 @@ The function accepts the following arguments: void stdlib_strided_ts_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ts_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ts_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12791,7 +12791,7 @@ The function accepts the following arguments: void stdlib_strided_ts_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12832,7 +12832,7 @@ The function accepts the following arguments: void stdlib_strided_tt_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_c_as_cc_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_c_as_cc_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12874,7 +12874,7 @@ The function accepts the following arguments: void stdlib_strided_tt_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_c_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_c_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12916,7 +12916,7 @@ The function accepts the following arguments: void stdlib_strided_tt_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12957,7 +12957,7 @@ The function accepts the following arguments: void stdlib_strided_tt_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -12998,7 +12998,7 @@ The function accepts the following arguments: void stdlib_strided_tt_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13039,7 +13039,7 @@ The function accepts the following arguments: void stdlib_strided_tt_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_f_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_f_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13080,7 +13080,7 @@ The function accepts the following arguments: void stdlib_strided_tt_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_f_as_ff_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_f_as_ff_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13121,7 +13121,7 @@ The function accepts the following arguments: void stdlib_strided_tt_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13162,7 +13162,7 @@ The function accepts the following arguments: void stdlib_strided_tt_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_i_as_ii_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_i_as_ii_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13203,7 +13203,7 @@ The function accepts the following arguments: void stdlib_strided_tt_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13244,7 +13244,7 @@ The function accepts the following arguments: void stdlib_strided_tt_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13285,7 +13285,7 @@ The function accepts the following arguments: void stdlib_strided_tt_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_u_as_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_u_as_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13326,7 +13326,7 @@ The function accepts the following arguments: void stdlib_strided_tt_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13367,7 +13367,7 @@ The function accepts the following arguments: void stdlib_strided_tt_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tt_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tt_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13409,7 +13409,7 @@ The function accepts the following arguments: void stdlib_strided_tt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tu_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tu_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13450,7 +13450,7 @@ The function accepts the following arguments: void stdlib_strided_tu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tu_u_as_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tu_u_as_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13491,7 +13491,7 @@ The function accepts the following arguments: void stdlib_strided_tu_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tu_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tu_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13533,7 +13533,7 @@ The function accepts the following arguments: void stdlib_strided_tu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_tz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_tz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13575,7 +13575,7 @@ The function accepts the following arguments: void stdlib_strided_tz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ub_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ub_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13616,7 +13616,7 @@ The function accepts the following arguments: void stdlib_strided_ub_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ub_u_as_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ub_u_as_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13657,7 +13657,7 @@ The function accepts the following arguments: void stdlib_strided_ub_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ub_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ub_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13699,7 +13699,7 @@ The function accepts the following arguments: void stdlib_strided_ub_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13741,7 +13741,7 @@ The function accepts the following arguments: void stdlib_strided_uc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ud_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ud_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13782,7 +13782,7 @@ The function accepts the following arguments: void stdlib_strided_ud_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ud_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ud_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13824,7 +13824,7 @@ The function accepts the following arguments: void stdlib_strided_ud_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uf_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uf_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13865,7 +13865,7 @@ The function accepts the following arguments: void stdlib_strided_uf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uf_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uf_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13907,7 +13907,7 @@ The function accepts the following arguments: void stdlib_strided_uf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ui_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ui_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13948,7 +13948,7 @@ The function accepts the following arguments: void stdlib_strided_ui_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ui_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ui_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -13990,7 +13990,7 @@ The function accepts the following arguments: void stdlib_strided_ui_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uk_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uk_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14031,7 +14031,7 @@ The function accepts the following arguments: void stdlib_strided_uk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uk_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uk_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14073,7 +14073,7 @@ The function accepts the following arguments: void stdlib_strided_uk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_us_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_us_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14114,7 +14114,7 @@ The function accepts the following arguments: void stdlib_strided_us_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_us_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_us_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14156,7 +14156,7 @@ The function accepts the following arguments: void stdlib_strided_us_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ut_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ut_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14197,7 +14197,7 @@ The function accepts the following arguments: void stdlib_strided_ut_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ut_u_as_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ut_u_as_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14238,7 +14238,7 @@ The function accepts the following arguments: void stdlib_strided_ut_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_ut_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_ut_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14280,7 +14280,7 @@ The function accepts the following arguments: void stdlib_strided_ut_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uu_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uu_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14321,7 +14321,7 @@ The function accepts the following arguments: void stdlib_strided_uu_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uu_d_as_dd_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uu_d_as_dd_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14362,7 +14362,7 @@ The function accepts the following arguments: void stdlib_strided_uu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uu_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uu_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14403,7 +14403,7 @@ The function accepts the following arguments: void stdlib_strided_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uu_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uu_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14444,7 +14444,7 @@ The function accepts the following arguments: void stdlib_strided_uu_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uu_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uu_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14486,7 +14486,7 @@ The function accepts the following arguments: void stdlib_strided_uu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_uz_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_uz_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14528,7 +14528,7 @@ The function accepts the following arguments: void stdlib_strided_uz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zb_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zb_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14570,7 +14570,7 @@ The function accepts the following arguments: void stdlib_strided_zb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zc_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zc_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14612,7 +14612,7 @@ The function accepts the following arguments: void stdlib_strided_zc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zd_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zd_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14654,7 +14654,7 @@ The function accepts the following arguments: void stdlib_strided_zd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zf_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zf_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14696,7 +14696,7 @@ The function accepts the following arguments: void stdlib_strided_zf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zi_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zi_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14738,7 +14738,7 @@ The function accepts the following arguments: void stdlib_strided_zi_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zk_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zk_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14780,7 +14780,7 @@ The function accepts the following arguments: void stdlib_strided_zk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zs_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zs_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14822,7 +14822,7 @@ The function accepts the following arguments: void stdlib_strided_zs_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zt_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zt_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14864,7 +14864,7 @@ The function accepts the following arguments: void stdlib_strided_zt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zu_z_as_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zu_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14906,7 +14906,7 @@ The function accepts the following arguments: void stdlib_strided_zu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_zz_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -15298,6 +15298,18 @@ int main( void ) { @@ -15308,6 +15320,24 @@ int main( void ) { [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/dmap2]: https://github.com/stdlib-js/strided/tree/main/base/dmap2 + +[@stdlib/strided/base/nullary]: https://github.com/stdlib-js/strided/tree/main/base/nullary + +[@stdlib/strided/base/quaternary]: https://github.com/stdlib-js/strided/tree/main/base/quaternary + +[@stdlib/strided/base/quinary]: https://github.com/stdlib-js/strided/tree/main/base/quinary + +[@stdlib/strided/base/smap2]: https://github.com/stdlib-js/strided/tree/main/base/smap2 + +[@stdlib/strided/base/ternary]: https://github.com/stdlib-js/strided/tree/main/base/ternary + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + +
diff --git a/base/cmap/README.md b/base/cmap/README.md index d8105532..0f9cb767 100644 --- a/base/cmap/README.md +++ b/base/cmap/README.md @@ -349,6 +349,13 @@ int main( void ) { @@ -359,6 +366,14 @@ int main( void ) { [@stdlib/array/complex64]: https://github.com/stdlib-js/array-complex64 + + +[@stdlib/strided/base/zmap]: https://github.com/stdlib-js/strided/tree/main/base/zmap + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + +
diff --git a/base/dmap/README.md b/base/dmap/README.md index 9105e0d2..8d0ff9c5 100644 --- a/base/dmap/README.md +++ b/base/dmap/README.md @@ -291,6 +291,13 @@ int main( void ) { @@ -301,6 +308,14 @@ int main( void ) { [@stdlib/array/float64]: https://github.com/stdlib-js/array-float64 + + +[@stdlib/strided/base/smap]: https://github.com/stdlib-js/strided/tree/main/base/smap + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + +
diff --git a/base/dmap2/README.md b/base/dmap2/README.md index 1d1784dc..c9077fc8 100644 --- a/base/dmap2/README.md +++ b/base/dmap2/README.md @@ -303,6 +303,13 @@ int main( void ) { @@ -313,6 +320,14 @@ int main( void ) { [@stdlib/array/float64]: https://github.com/stdlib-js/array-float64 + + +[@stdlib/strided/base/smap2]: https://github.com/stdlib-js/strided/tree/main/base/smap2 + +[@stdlib/strided/base/binary]: https://github.com/stdlib-js/strided/tree/main/base/binary + + +
diff --git a/base/dmskmap/README.md b/base/dmskmap/README.md index 02540054..be2483c2 100644 --- a/base/dmskmap/README.md +++ b/base/dmskmap/README.md @@ -319,6 +319,15 @@ int main( void ) { @@ -331,6 +340,18 @@ int main( void ) { [@stdlib/array/uint8]: https://github.com/stdlib-js/array-uint8 + + +[@stdlib/strided/base/dmap]: https://github.com/stdlib-js/strided/tree/main/base/dmap + +[@stdlib/strided/base/dmskmap2]: https://github.com/stdlib-js/strided/tree/main/base/dmskmap2 + +[@stdlib/strided/base/mskunary]: https://github.com/stdlib-js/strided/tree/main/base/mskunary + +[@stdlib/strided/base/smskmap]: https://github.com/stdlib-js/strided/tree/main/base/smskmap + + + diff --git a/base/dmskmap2/README.md b/base/dmskmap2/README.md index d97921ea..e95f34c6 100644 --- a/base/dmskmap2/README.md +++ b/base/dmskmap2/README.md @@ -328,6 +328,14 @@ int main( void ) { @@ -340,6 +348,16 @@ int main( void ) { [@stdlib/array/uint8]: https://github.com/stdlib-js/array-uint8 + + +[@stdlib/strided/base/dmap2]: https://github.com/stdlib-js/strided/tree/main/base/dmap2 + +[@stdlib/strided/base/dmskmap]: https://github.com/stdlib-js/strided/tree/main/base/dmskmap + +[@stdlib/strided/base/smskmap2]: https://github.com/stdlib-js/strided/tree/main/base/smskmap2 + + + diff --git a/base/function-object/README.md b/base/function-object/README.md index 3bf3cba6..f38100d9 100644 --- a/base/function-object/README.md +++ b/base/function-object/README.md @@ -152,7 +152,7 @@ A `StridedArrayFcn` function should accept the following arguments: -#### stdlib_strided_function_allocate( *name, nin, nout, *functions, nfunctions, *types, *data[] ) +#### stdlib_strided_function_allocate( \_name, nin, nout, \_functions, nfunctions, \_types, \_data\[] ) Returns a pointer to a dynamically allocated strided array function object. @@ -233,7 +233,7 @@ struct StridedFunctionObject * stdlib_strided_function_allocate( const char *nam The function returns a pointer to a dynamically allocated strided array function or, if unable to allocate memory, a null pointer. The **user** is responsible for freeing the allocated memory. -#### stdlib_strided_function_free( *obj ) +#### stdlib_strided_function_free( \*obj ) Frees a strided array function object's allocated memory. @@ -287,7 +287,7 @@ The function accepts the following arguments: void stdlib_strided_function_free( struct StridedFunctionObject *obj ) ``` -#### stdlib_strided_function_dispatch_index_of( *obj, *types ) +#### stdlib_strided_function_dispatch_index_of( \_obj, \_types ) Returns the first index of a function whose signature satisfies a provided list of array types. diff --git a/base/map-by/README.md b/base/map-by/README.md index 7dedef98..6f46c1b2 100644 --- a/base/map-by/README.md +++ b/base/map-by/README.md @@ -242,6 +242,13 @@ console.log( y ); @@ -254,6 +261,14 @@ console.log( y ); [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/map-by2]: https://github.com/stdlib-js/strided/tree/main/base/map-by2 + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/base/map-by2/README.md b/base/map-by2/README.md index f88367da..6b907ce2 100644 --- a/base/map-by2/README.md +++ b/base/map-by2/README.md @@ -268,6 +268,13 @@ console.log( z ); @@ -280,6 +287,14 @@ console.log( z ); [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/map-by]: https://github.com/stdlib-js/strided/tree/main/base/map-by + +[@stdlib/strided/base/binary]: https://github.com/stdlib-js/strided/tree/main/base/binary + + + diff --git a/base/mskunary-dtype-signatures/README.md b/base/mskunary-dtype-signatures/README.md index 0ac11cd2..16a960b2 100644 --- a/base/mskunary-dtype-signatures/README.md +++ b/base/mskunary-dtype-signatures/README.md @@ -142,6 +142,12 @@ console.log( str ); @@ -152,7 +158,13 @@ console.log( str ); [@stdlib/strided/dtypes]: https://github.com/stdlib-js/strided/tree/main/dtypes -[@stdlib/ndarray/promotion-rules]: https://github.com/stdlib-js/stdlib +[@stdlib/ndarray/promotion-rules]: https://github.com/stdlib-js/ndarray-promotion-rules + + + +[@stdlib/strided/base/mskunary-signature-callbacks]: https://github.com/stdlib-js/strided/tree/main/base/mskunary-signature-callbacks + + diff --git a/base/mskunary-signature-callbacks/README.md b/base/mskunary-signature-callbacks/README.md index 4fac276a..697a8c41 100644 --- a/base/mskunary-signature-callbacks/README.md +++ b/base/mskunary-signature-callbacks/README.md @@ -151,6 +151,12 @@ var clbks = callbacks( table, sigs ); @@ -159,7 +165,13 @@ var clbks = callbacks( table, sigs ); diff --git a/base/mskunary/README.md b/base/mskunary/README.md index 15c745a1..431ff44e 100644 --- a/base/mskunary/README.md +++ b/base/mskunary/README.md @@ -289,7 +289,7 @@ y[ i ] = (double)out; -#### stdlib_strided_mask_b_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -330,7 +330,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_b_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_b_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -371,7 +371,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_b_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -412,7 +412,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_c_as_b_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_c_as_b_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -454,7 +454,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_c_as_b_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -496,7 +496,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -538,7 +538,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -579,7 +579,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_d_as_b_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_d_as_b_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -620,7 +620,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_d_as_b_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -661,7 +661,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -702,7 +702,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_f_as_b_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_f_as_b_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -743,7 +743,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_f_as_b_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -784,7 +784,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_f_as_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_f_as_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -825,7 +825,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_f_as_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -866,7 +866,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_i_as_b_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_i_as_b_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -907,7 +907,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_i_as_b_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_i_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_i_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -948,7 +948,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_i_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -989,7 +989,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_k_as_b_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_k_as_b_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1030,7 +1030,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_k_as_b_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_k_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_k_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1071,7 +1071,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_k_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_k_as_k_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_k_as_k_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1112,7 +1112,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_k_as_k_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1153,7 +1153,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_t_as_b_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_t_as_b_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1194,7 +1194,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_t_as_b_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_t_as_t_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_t_as_t_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1235,7 +1235,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_t_as_t_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_t_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_t_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1276,7 +1276,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_t_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1317,7 +1317,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_u_as_b_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_u_as_b_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1358,7 +1358,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_u_as_b_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_u_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_u_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1399,7 +1399,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_u_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1440,7 +1440,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_z_as_b_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_z_as_b_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1482,7 +1482,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_z_as_b_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_b_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_b_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1524,7 +1524,7 @@ The function accepts the following arguments: void stdlib_strided_mask_b_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1566,7 +1566,7 @@ The function accepts the following arguments: void stdlib_strided_mask_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_c_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_c_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1608,7 +1608,7 @@ The function accepts the following arguments: void stdlib_strided_mask_c_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_c_f_as_c_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_c_f_as_c_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1650,7 +1650,7 @@ The function accepts the following arguments: void stdlib_strided_mask_c_f_as_c_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_c_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_c_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1692,7 +1692,7 @@ The function accepts the following arguments: void stdlib_strided_mask_c_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_c_z_as_c_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_c_z_as_c_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1735,7 +1735,7 @@ The function accepts the following arguments: void stdlib_strided_mask_c_z_as_c_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_c_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_c_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1777,7 +1777,7 @@ The function accepts the following arguments: void stdlib_strided_mask_c_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1818,7 +1818,7 @@ The function accepts the following arguments: void stdlib_strided_mask_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_d_i_as_d_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_d_i_as_d_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1859,7 +1859,7 @@ The function accepts the following arguments: void stdlib_strided_mask_d_i_as_d_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_d_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_d_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1900,7 +1900,7 @@ The function accepts the following arguments: void stdlib_strided_mask_d_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_d_z_as_d_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_d_z_as_d_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1942,7 +1942,7 @@ The function accepts the following arguments: void stdlib_strided_mask_d_z_as_d_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_d_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_d_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -1984,7 +1984,7 @@ The function accepts the following arguments: void stdlib_strided_mask_d_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2025,7 +2025,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2067,7 +2067,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_c_as_f_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_c_as_f_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2109,7 +2109,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_c_as_f_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2151,7 +2151,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2192,7 +2192,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2233,7 +2233,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_d_as_f_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_d_as_f_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2274,7 +2274,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_d_as_f_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2315,7 +2315,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2356,7 +2356,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_i_as_f_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_i_as_f_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2397,7 +2397,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_i_as_f_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2438,7 +2438,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_z_as_f_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_z_as_f_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2480,7 +2480,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_z_as_f_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_f_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_f_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2522,7 +2522,7 @@ The function accepts the following arguments: void stdlib_strided_mask_f_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_i_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_i_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2563,7 +2563,7 @@ The function accepts the following arguments: void stdlib_strided_mask_i_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_i_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_i_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2604,7 +2604,7 @@ The function accepts the following arguments: void stdlib_strided_mask_i_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_i_d_as_i_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_i_d_as_i_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2645,7 +2645,7 @@ The function accepts the following arguments: void stdlib_strided_mask_i_d_as_i_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2686,7 +2686,7 @@ The function accepts the following arguments: void stdlib_strided_mask_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_i_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_i_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2727,7 +2727,7 @@ The function accepts the following arguments: void stdlib_strided_mask_i_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_i_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_i_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2768,7 +2768,7 @@ The function accepts the following arguments: void stdlib_strided_mask_i_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_i_z_as_i_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_i_z_as_i_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2810,7 +2810,7 @@ The function accepts the following arguments: void stdlib_strided_mask_i_z_as_i_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_i_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_i_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2852,7 +2852,7 @@ The function accepts the following arguments: void stdlib_strided_mask_i_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2893,7 +2893,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2935,7 +2935,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_c_as_k_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_c_as_k_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -2977,7 +2977,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_c_as_k_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3019,7 +3019,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3060,7 +3060,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3101,7 +3101,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_d_as_k_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_d_as_k_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3142,7 +3142,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_d_as_k_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3183,7 +3183,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3224,7 +3224,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_f_as_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_f_as_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3265,7 +3265,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_f_as_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_f_as_k_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_f_as_k_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3306,7 +3306,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_f_as_k_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3347,7 +3347,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_i_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_i_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3388,7 +3388,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_i_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_i_as_k_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_i_as_k_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3429,7 +3429,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_i_as_k_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3470,7 +3470,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_k_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_k_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3511,7 +3511,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_k_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3552,7 +3552,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_t_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_t_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3593,7 +3593,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_t_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3634,7 +3634,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_u_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_u_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3675,7 +3675,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_u_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3716,7 +3716,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_z_as_k_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_z_as_k_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3758,7 +3758,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_z_as_k_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_k_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_k_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3800,7 +3800,7 @@ The function accepts the following arguments: void stdlib_strided_mask_k_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3841,7 +3841,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3882,7 +3882,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3924,7 +3924,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_c_as_s_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_c_as_s_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -3966,7 +3966,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_c_as_s_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4008,7 +4008,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4049,7 +4049,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4090,7 +4090,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_d_as_s_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_d_as_s_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4131,7 +4131,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_d_as_s_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4172,7 +4172,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4213,7 +4213,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_f_as_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_f_as_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4254,7 +4254,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_f_as_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_f_as_s_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_f_as_s_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4295,7 +4295,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_f_as_s_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4336,7 +4336,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_i_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_i_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4377,7 +4377,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_i_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_i_as_s_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_i_as_s_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4418,7 +4418,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_i_as_s_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4459,7 +4459,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_k_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_k_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4500,7 +4500,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_k_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_k_as_k_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_k_as_k_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4541,7 +4541,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_k_as_k_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_k_as_s_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_k_as_s_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4582,7 +4582,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_k_as_s_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4623,7 +4623,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_s_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_s_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4664,7 +4664,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_s_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4705,7 +4705,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_t_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_t_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4746,7 +4746,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_t_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4787,7 +4787,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_u_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_u_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4828,7 +4828,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_u_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4869,7 +4869,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_z_as_s_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_z_as_s_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4911,7 +4911,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_z_as_s_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_s_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_s_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4953,7 +4953,7 @@ The function accepts the following arguments: void stdlib_strided_mask_s_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -4994,7 +4994,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5036,7 +5036,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_c_as_t_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_c_as_t_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5078,7 +5078,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_c_as_t_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5120,7 +5120,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5161,7 +5161,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5202,7 +5202,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_d_as_t_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_d_as_t_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5243,7 +5243,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_d_as_t_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5284,7 +5284,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5325,7 +5325,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_f_as_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_f_as_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5366,7 +5366,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_f_as_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_f_as_t_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_f_as_t_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5407,7 +5407,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_f_as_t_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5448,7 +5448,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_i_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_i_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5489,7 +5489,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_i_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_i_as_t_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_i_as_t_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5530,7 +5530,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_i_as_t_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5571,7 +5571,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_t_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_t_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5612,7 +5612,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_t_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5653,7 +5653,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_u_as_t_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_u_as_t_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5694,7 +5694,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_u_as_t_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_u_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_u_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5735,7 +5735,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_u_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5776,7 +5776,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_z_as_t_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_z_as_t_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5818,7 +5818,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_z_as_t_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_t_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_t_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5860,7 +5860,7 @@ The function accepts the following arguments: void stdlib_strided_mask_t_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_u_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_u_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5901,7 +5901,7 @@ The function accepts the following arguments: void stdlib_strided_mask_u_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_u_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_u_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5942,7 +5942,7 @@ The function accepts the following arguments: void stdlib_strided_mask_u_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_u_d_as_u_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_u_d_as_u_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -5983,7 +5983,7 @@ The function accepts the following arguments: void stdlib_strided_mask_u_d_as_u_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -6024,7 +6024,7 @@ The function accepts the following arguments: void stdlib_strided_mask_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_u_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_u_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -6065,7 +6065,7 @@ The function accepts the following arguments: void stdlib_strided_mask_u_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_u_z_as_u_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_u_z_as_u_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -6107,7 +6107,7 @@ The function accepts the following arguments: void stdlib_strided_mask_u_z_as_u_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_u_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_u_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -6149,7 +6149,7 @@ The function accepts the following arguments: void stdlib_strided_mask_u_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_z_d_as_z_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_z_d_as_z_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -6191,7 +6191,7 @@ The function accepts the following arguments: void stdlib_strided_mask_z_d_as_z_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_mask_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_mask_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements according to a strided mask array and assigns results to elements in a strided output array. @@ -6520,6 +6520,14 @@ int main( void ) { @@ -6530,6 +6538,16 @@ int main( void ) { [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/dmskmap]: https://github.com/stdlib-js/strided/tree/main/base/dmskmap + +[@stdlib/strided/base/smskmap]: https://github.com/stdlib-js/strided/tree/main/base/smskmap + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/base/nullary/README.md b/base/nullary/README.md index 7d68490e..266cd730 100644 --- a/base/nullary/README.md +++ b/base/nullary/README.md @@ -249,7 +249,7 @@ y[ i ] = (float)out; -#### stdlib_strided_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -288,7 +288,7 @@ The function accepts the following arguments: void stdlib_strided_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -328,7 +328,7 @@ The function accepts the following arguments: void stdlib_strided_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_as_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_as_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -367,7 +367,7 @@ The function accepts the following arguments: void stdlib_strided_c_as_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_as_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_as_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -406,7 +406,7 @@ The function accepts the following arguments: void stdlib_strided_c_as_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_as_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_as_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -445,7 +445,7 @@ The function accepts the following arguments: void stdlib_strided_c_as_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_as_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_as_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -484,7 +484,7 @@ The function accepts the following arguments: void stdlib_strided_c_as_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_as_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_as_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -523,7 +523,7 @@ The function accepts the following arguments: void stdlib_strided_c_as_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_as_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_as_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -563,7 +563,7 @@ The function accepts the following arguments: void stdlib_strided_c_as_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -602,7 +602,7 @@ The function accepts the following arguments: void stdlib_strided_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_as_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_as_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -641,7 +641,7 @@ The function accepts the following arguments: void stdlib_strided_d_as_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_as_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_as_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -680,7 +680,7 @@ The function accepts the following arguments: void stdlib_strided_d_as_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_as_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_as_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -719,7 +719,7 @@ The function accepts the following arguments: void stdlib_strided_d_as_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_as_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_as_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -758,7 +758,7 @@ The function accepts the following arguments: void stdlib_strided_d_as_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_as_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_as_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -797,7 +797,7 @@ The function accepts the following arguments: void stdlib_strided_d_as_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_as_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_as_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -836,7 +836,7 @@ The function accepts the following arguments: void stdlib_strided_d_as_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_as_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_as_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -875,7 +875,7 @@ The function accepts the following arguments: void stdlib_strided_d_as_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -914,7 +914,7 @@ The function accepts the following arguments: void stdlib_strided_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_as_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_as_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -953,7 +953,7 @@ The function accepts the following arguments: void stdlib_strided_f_as_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_as_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_as_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -992,7 +992,7 @@ The function accepts the following arguments: void stdlib_strided_f_as_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_as_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_as_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1031,7 +1031,7 @@ The function accepts the following arguments: void stdlib_strided_f_as_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_as_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_as_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1070,7 +1070,7 @@ The function accepts the following arguments: void stdlib_strided_f_as_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_as_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_as_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1109,7 +1109,7 @@ The function accepts the following arguments: void stdlib_strided_f_as_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1148,7 +1148,7 @@ The function accepts the following arguments: void stdlib_strided_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_as_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_as_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1187,7 +1187,7 @@ The function accepts the following arguments: void stdlib_strided_i_as_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_as_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_as_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1226,7 +1226,7 @@ The function accepts the following arguments: void stdlib_strided_i_as_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_as_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_as_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1265,7 +1265,7 @@ The function accepts the following arguments: void stdlib_strided_i_as_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_as_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_as_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1304,7 +1304,7 @@ The function accepts the following arguments: void stdlib_strided_i_as_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1343,7 +1343,7 @@ The function accepts the following arguments: void stdlib_strided_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_as_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_as_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1382,7 +1382,7 @@ The function accepts the following arguments: void stdlib_strided_k_as_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_as_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_as_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1421,7 +1421,7 @@ The function accepts the following arguments: void stdlib_strided_k_as_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1460,7 +1460,7 @@ The function accepts the following arguments: void stdlib_strided_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1499,7 +1499,7 @@ The function accepts the following arguments: void stdlib_strided_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_as_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_as_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1538,7 +1538,7 @@ The function accepts the following arguments: void stdlib_strided_t_as_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1577,7 +1577,7 @@ The function accepts the following arguments: void stdlib_strided_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_as_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_as_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1616,7 +1616,7 @@ The function accepts the following arguments: void stdlib_strided_u_as_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_as_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_as_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1655,7 +1655,7 @@ The function accepts the following arguments: void stdlib_strided_u_as_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1695,7 +1695,7 @@ The function accepts the following arguments: void stdlib_strided_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1734,7 +1734,7 @@ The function accepts the following arguments: void stdlib_strided_z_as_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1774,7 +1774,7 @@ The function accepts the following arguments: void stdlib_strided_z_as_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1813,7 +1813,7 @@ The function accepts the following arguments: void stdlib_strided_z_as_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1852,7 +1852,7 @@ The function accepts the following arguments: void stdlib_strided_z_as_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1891,7 +1891,7 @@ The function accepts the following arguments: void stdlib_strided_z_as_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1930,7 +1930,7 @@ The function accepts the following arguments: void stdlib_strided_z_as_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -1969,7 +1969,7 @@ The function accepts the following arguments: void stdlib_strided_z_as_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -2008,7 +2008,7 @@ The function accepts the following arguments: void stdlib_strided_z_as_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_as_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_as_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a nullary callback and assigns results to elements in a strided output array. @@ -2308,6 +2308,16 @@ int main( void ) { @@ -2318,6 +2328,20 @@ int main( void ) { [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/binary]: https://github.com/stdlib-js/strided/tree/main/base/binary + +[@stdlib/strided/base/quaternary]: https://github.com/stdlib-js/strided/tree/main/base/quaternary + +[@stdlib/strided/base/quinary]: https://github.com/stdlib-js/strided/tree/main/base/quinary + +[@stdlib/strided/base/ternary]: https://github.com/stdlib-js/strided/tree/main/base/ternary + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/base/offset-view/README.md b/base/offset-view/README.md index 248c4e28..23cccbb8 100644 --- a/base/offset-view/README.md +++ b/base/offset-view/README.md @@ -77,7 +77,7 @@ var v1 = view[ 0 ]; var v2 = view[ 1 ]; // returns 4.0 -```` +``` diff --git a/base/quaternary/README.md b/base/quaternary/README.md index 563e1d7b..dbb409e9 100644 --- a/base/quaternary/README.md +++ b/base/quaternary/README.md @@ -217,6 +217,16 @@ console.log( u ); @@ -227,6 +237,20 @@ console.log( u ); [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/binary]: https://github.com/stdlib-js/strided/tree/main/base/binary + +[@stdlib/strided/base/nullary]: https://github.com/stdlib-js/strided/tree/main/base/nullary + +[@stdlib/strided/base/quinary]: https://github.com/stdlib-js/strided/tree/main/base/quinary + +[@stdlib/strided/base/ternary]: https://github.com/stdlib-js/strided/tree/main/base/ternary + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/base/quinary/README.md b/base/quinary/README.md index 2652165a..70b9ef58 100644 --- a/base/quinary/README.md +++ b/base/quinary/README.md @@ -226,6 +226,16 @@ console.log( v ); @@ -236,6 +246,20 @@ console.log( v ); [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/binary]: https://github.com/stdlib-js/strided/tree/main/base/binary + +[@stdlib/strided/base/nullary]: https://github.com/stdlib-js/strided/tree/main/base/nullary + +[@stdlib/strided/base/quaternary]: https://github.com/stdlib-js/strided/tree/main/base/quaternary + +[@stdlib/strided/base/ternary]: https://github.com/stdlib-js/strided/tree/main/base/ternary + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/base/reinterpret-complex128/README.md b/base/reinterpret-complex128/README.md index 01516cc0..b7314489 100644 --- a/base/reinterpret-complex128/README.md +++ b/base/reinterpret-complex128/README.md @@ -77,7 +77,7 @@ var re = view[ 0 ]; var im = view[ 1 ]; // returns 6.0 -```` +``` @@ -152,9 +152,9 @@ var im = imag( z ); diff --git a/base/reinterpret-complex64/README.md b/base/reinterpret-complex64/README.md index 9c6b0892..d182a254 100644 --- a/base/reinterpret-complex64/README.md +++ b/base/reinterpret-complex64/README.md @@ -77,7 +77,7 @@ var re = view[ 0 ]; var im = view[ 1 ]; // returns 6.0 -```` +``` @@ -152,9 +152,9 @@ var im = imag( z ); diff --git a/base/smap/README.md b/base/smap/README.md index 5a356603..8235e9bb 100644 --- a/base/smap/README.md +++ b/base/smap/README.md @@ -291,6 +291,13 @@ int main( void ) { @@ -301,6 +308,14 @@ int main( void ) { [@stdlib/array/float32]: https://github.com/stdlib-js/array-float32 + + +[@stdlib/strided/base/dmap]: https://github.com/stdlib-js/strided/tree/main/base/dmap + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/base/smap2/README.md b/base/smap2/README.md index eaac9914..1f39d44f 100644 --- a/base/smap2/README.md +++ b/base/smap2/README.md @@ -303,6 +303,13 @@ int main( void ) { @@ -313,6 +320,14 @@ int main( void ) { [@stdlib/array/float32]: https://github.com/stdlib-js/array-float32 + + +[@stdlib/strided/base/dmap2]: https://github.com/stdlib-js/strided/tree/main/base/dmap2 + +[@stdlib/strided/base/binary]: https://github.com/stdlib-js/strided/tree/main/base/binary + + + diff --git a/base/smskmap/README.md b/base/smskmap/README.md index d39b1fae..fd600332 100644 --- a/base/smskmap/README.md +++ b/base/smskmap/README.md @@ -319,6 +319,15 @@ int main( void ) { @@ -331,6 +340,18 @@ int main( void ) { [@stdlib/array/uint8]: https://github.com/stdlib-js/array-uint8 + + +[@stdlib/strided/base/dmskmap]: https://github.com/stdlib-js/strided/tree/main/base/dmskmap + +[@stdlib/strided/base/mskunary]: https://github.com/stdlib-js/strided/tree/main/base/mskunary + +[@stdlib/strided/base/smap]: https://github.com/stdlib-js/strided/tree/main/base/smap + +[@stdlib/strided/base/smskmap2]: https://github.com/stdlib-js/strided/tree/main/base/smskmap2 + + + diff --git a/base/smskmap2/README.md b/base/smskmap2/README.md index 20f21202..6af18a25 100644 --- a/base/smskmap2/README.md +++ b/base/smskmap2/README.md @@ -330,6 +330,14 @@ int main( void ) { @@ -342,6 +350,16 @@ int main( void ) { [@stdlib/array/uint8]: https://github.com/stdlib-js/array-uint8 + + +[@stdlib/strided/base/dmskmap2]: https://github.com/stdlib-js/strided/tree/main/base/dmskmap2 + +[@stdlib/strided/base/smap2]: https://github.com/stdlib-js/strided/tree/main/base/smap2 + +[@stdlib/strided/base/smskmap]: https://github.com/stdlib-js/strided/tree/main/base/smskmap + + + diff --git a/base/ternary/README.md b/base/ternary/README.md index d2aa50ad..97e0003d 100644 --- a/base/ternary/README.md +++ b/base/ternary/README.md @@ -208,6 +208,16 @@ console.log( w ); @@ -218,6 +228,20 @@ console.log( w ); [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/binary]: https://github.com/stdlib-js/strided/tree/main/base/binary + +[@stdlib/strided/base/nullary]: https://github.com/stdlib-js/strided/tree/main/base/nullary + +[@stdlib/strided/base/quaternary]: https://github.com/stdlib-js/strided/tree/main/base/quaternary + +[@stdlib/strided/base/quinary]: https://github.com/stdlib-js/strided/tree/main/base/quinary + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/base/unary-by/README.md b/base/unary-by/README.md index d2bc6380..0985771e 100644 --- a/base/unary-by/README.md +++ b/base/unary-by/README.md @@ -245,6 +245,13 @@ console.log( y ); @@ -255,6 +262,14 @@ console.log( y ); [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/map-by]: https://github.com/stdlib-js/strided/tree/main/base/map-by + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/base/unary-dtype-signatures/README.md b/base/unary-dtype-signatures/README.md index f0f12559..bf077e02 100644 --- a/base/unary-dtype-signatures/README.md +++ b/base/unary-dtype-signatures/README.md @@ -141,6 +141,12 @@ console.log( str ); @@ -151,7 +157,13 @@ console.log( str ); [@stdlib/strided/dtypes]: https://github.com/stdlib-js/strided/tree/main/dtypes -[@stdlib/ndarray/promotion-rules]: https://github.com/stdlib-js/stdlib +[@stdlib/ndarray/promotion-rules]: https://github.com/stdlib-js/ndarray-promotion-rules + + + +[@stdlib/strided/base/unary-signature-callbacks]: https://github.com/stdlib-js/strided/tree/main/base/unary-signature-callbacks + + diff --git a/base/unary-signature-callbacks/README.md b/base/unary-signature-callbacks/README.md index 3aa6f4cd..3092e897 100644 --- a/base/unary-signature-callbacks/README.md +++ b/base/unary-signature-callbacks/README.md @@ -151,6 +151,12 @@ var clbks = callbacks( table, sigs ); @@ -159,7 +165,13 @@ var clbks = callbacks( table, sigs ); diff --git a/base/unary/README.md b/base/unary/README.md index 8e60b364..3d3a95c9 100644 --- a/base/unary/README.md +++ b/base/unary/README.md @@ -282,7 +282,7 @@ y[ i ] = (double)out; -#### stdlib_strided_b_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -322,7 +322,7 @@ The function accepts the following arguments: void stdlib_strided_b_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_b_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_b_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -362,7 +362,7 @@ The function accepts the following arguments: void stdlib_strided_b_b_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -402,7 +402,7 @@ The function accepts the following arguments: void stdlib_strided_b_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_c_as_b_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_c_as_b_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -443,7 +443,7 @@ The function accepts the following arguments: void stdlib_strided_b_c_as_b_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -484,7 +484,7 @@ The function accepts the following arguments: void stdlib_strided_b_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -525,7 +525,7 @@ The function accepts the following arguments: void stdlib_strided_b_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -565,7 +565,7 @@ The function accepts the following arguments: void stdlib_strided_b_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_d_as_b_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_d_as_b_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -605,7 +605,7 @@ The function accepts the following arguments: void stdlib_strided_b_d_as_b_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -645,7 +645,7 @@ The function accepts the following arguments: void stdlib_strided_b_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -685,7 +685,7 @@ The function accepts the following arguments: void stdlib_strided_b_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_f_as_b_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_f_as_b_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -725,7 +725,7 @@ The function accepts the following arguments: void stdlib_strided_b_f_as_b_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -765,7 +765,7 @@ The function accepts the following arguments: void stdlib_strided_b_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_f_as_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_f_as_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -805,7 +805,7 @@ The function accepts the following arguments: void stdlib_strided_b_f_as_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -845,7 +845,7 @@ The function accepts the following arguments: void stdlib_strided_b_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_i_as_b_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_i_as_b_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -885,7 +885,7 @@ The function accepts the following arguments: void stdlib_strided_b_i_as_b_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_i_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_i_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -925,7 +925,7 @@ The function accepts the following arguments: void stdlib_strided_b_i_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -965,7 +965,7 @@ The function accepts the following arguments: void stdlib_strided_b_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_k_as_b_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_k_as_b_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1005,7 +1005,7 @@ The function accepts the following arguments: void stdlib_strided_b_k_as_b_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_k_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_k_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1045,7 +1045,7 @@ The function accepts the following arguments: void stdlib_strided_b_k_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_k_as_k_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_k_as_k_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1085,7 +1085,7 @@ The function accepts the following arguments: void stdlib_strided_b_k_as_k_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1125,7 +1125,7 @@ The function accepts the following arguments: void stdlib_strided_b_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_t_as_b_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_t_as_b_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1165,7 +1165,7 @@ The function accepts the following arguments: void stdlib_strided_b_t_as_b_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_t_as_t_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_t_as_t_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1205,7 +1205,7 @@ The function accepts the following arguments: void stdlib_strided_b_t_as_t_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_t_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_t_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1245,7 +1245,7 @@ The function accepts the following arguments: void stdlib_strided_b_t_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1285,7 +1285,7 @@ The function accepts the following arguments: void stdlib_strided_b_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_u_as_b_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_u_as_b_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1325,7 +1325,7 @@ The function accepts the following arguments: void stdlib_strided_b_u_as_b_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_u_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_u_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1365,7 +1365,7 @@ The function accepts the following arguments: void stdlib_strided_b_u_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1405,7 +1405,7 @@ The function accepts the following arguments: void stdlib_strided_b_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_z_as_b_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_z_as_b_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1446,7 +1446,7 @@ The function accepts the following arguments: void stdlib_strided_b_z_as_b_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_b_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_b_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1487,7 +1487,7 @@ The function accepts the following arguments: void stdlib_strided_b_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1528,7 +1528,7 @@ The function accepts the following arguments: void stdlib_strided_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1569,7 +1569,7 @@ The function accepts the following arguments: void stdlib_strided_c_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_f_as_c_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_f_as_c_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1610,7 +1610,7 @@ The function accepts the following arguments: void stdlib_strided_c_f_as_c_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1651,7 +1651,7 @@ The function accepts the following arguments: void stdlib_strided_c_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_z_as_c_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_z_as_c_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1693,7 +1693,7 @@ The function accepts the following arguments: void stdlib_strided_c_z_as_c_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_c_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_c_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1734,7 +1734,7 @@ The function accepts the following arguments: void stdlib_strided_c_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1774,7 +1774,7 @@ The function accepts the following arguments: void stdlib_strided_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_i_as_d_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_i_as_d_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1814,7 +1814,7 @@ The function accepts the following arguments: void stdlib_strided_d_i_as_d_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1854,7 +1854,7 @@ The function accepts the following arguments: void stdlib_strided_d_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_z_as_d_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_z_as_d_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1895,7 +1895,7 @@ The function accepts the following arguments: void stdlib_strided_d_z_as_d_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_d_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_d_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1936,7 +1936,7 @@ The function accepts the following arguments: void stdlib_strided_d_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -1976,7 +1976,7 @@ The function accepts the following arguments: void stdlib_strided_f_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2017,7 +2017,7 @@ The function accepts the following arguments: void stdlib_strided_f_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_c_as_f_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_c_as_f_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2058,7 +2058,7 @@ The function accepts the following arguments: void stdlib_strided_f_c_as_f_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2099,7 +2099,7 @@ The function accepts the following arguments: void stdlib_strided_f_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2139,7 +2139,7 @@ The function accepts the following arguments: void stdlib_strided_f_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2179,7 +2179,7 @@ The function accepts the following arguments: void stdlib_strided_f_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_d_as_f_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_d_as_f_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2219,7 +2219,7 @@ The function accepts the following arguments: void stdlib_strided_f_d_as_f_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2259,7 +2259,7 @@ The function accepts the following arguments: void stdlib_strided_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2299,7 +2299,7 @@ The function accepts the following arguments: void stdlib_strided_f_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_i_as_f_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_i_as_f_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2339,7 +2339,7 @@ The function accepts the following arguments: void stdlib_strided_f_i_as_f_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2379,7 +2379,7 @@ The function accepts the following arguments: void stdlib_strided_f_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_z_as_f_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_z_as_f_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2420,7 +2420,7 @@ The function accepts the following arguments: void stdlib_strided_f_z_as_f_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_f_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_f_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2461,7 +2461,7 @@ The function accepts the following arguments: void stdlib_strided_f_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2501,7 +2501,7 @@ The function accepts the following arguments: void stdlib_strided_i_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2541,7 +2541,7 @@ The function accepts the following arguments: void stdlib_strided_i_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_d_as_i_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_d_as_i_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2581,7 +2581,7 @@ The function accepts the following arguments: void stdlib_strided_i_d_as_i_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2621,7 +2621,7 @@ The function accepts the following arguments: void stdlib_strided_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2661,7 +2661,7 @@ The function accepts the following arguments: void stdlib_strided_i_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2701,7 +2701,7 @@ The function accepts the following arguments: void stdlib_strided_i_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_z_as_i_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_z_as_i_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2742,7 +2742,7 @@ The function accepts the following arguments: void stdlib_strided_i_z_as_i_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_i_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_i_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2783,7 +2783,7 @@ The function accepts the following arguments: void stdlib_strided_i_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2823,7 +2823,7 @@ The function accepts the following arguments: void stdlib_strided_k_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2864,7 +2864,7 @@ The function accepts the following arguments: void stdlib_strided_k_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_c_as_k_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_c_as_k_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2905,7 +2905,7 @@ The function accepts the following arguments: void stdlib_strided_k_c_as_k_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2946,7 +2946,7 @@ The function accepts the following arguments: void stdlib_strided_k_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -2986,7 +2986,7 @@ The function accepts the following arguments: void stdlib_strided_k_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3026,7 +3026,7 @@ The function accepts the following arguments: void stdlib_strided_k_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_d_as_k_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_d_as_k_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3066,7 +3066,7 @@ The function accepts the following arguments: void stdlib_strided_k_d_as_k_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3106,7 +3106,7 @@ The function accepts the following arguments: void stdlib_strided_k_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3146,7 +3146,7 @@ The function accepts the following arguments: void stdlib_strided_k_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_f_as_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_f_as_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3186,7 +3186,7 @@ The function accepts the following arguments: void stdlib_strided_k_f_as_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_f_as_k_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_f_as_k_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3226,7 +3226,7 @@ The function accepts the following arguments: void stdlib_strided_k_f_as_k_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3266,7 +3266,7 @@ The function accepts the following arguments: void stdlib_strided_k_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_i_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_i_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3306,7 +3306,7 @@ The function accepts the following arguments: void stdlib_strided_k_i_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_i_as_k_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_i_as_k_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3346,7 +3346,7 @@ The function accepts the following arguments: void stdlib_strided_k_i_as_k_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3386,7 +3386,7 @@ The function accepts the following arguments: void stdlib_strided_k_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_k_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_k_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3426,7 +3426,7 @@ The function accepts the following arguments: void stdlib_strided_k_k_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3466,7 +3466,7 @@ The function accepts the following arguments: void stdlib_strided_k_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_t_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_t_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3506,7 +3506,7 @@ The function accepts the following arguments: void stdlib_strided_k_t_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3546,7 +3546,7 @@ The function accepts the following arguments: void stdlib_strided_k_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_u_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_u_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3586,7 +3586,7 @@ The function accepts the following arguments: void stdlib_strided_k_u_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3626,7 +3626,7 @@ The function accepts the following arguments: void stdlib_strided_k_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_z_as_k_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_z_as_k_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3667,7 +3667,7 @@ The function accepts the following arguments: void stdlib_strided_k_z_as_k_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_k_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_k_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3708,7 +3708,7 @@ The function accepts the following arguments: void stdlib_strided_k_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_b( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_b( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3748,7 +3748,7 @@ The function accepts the following arguments: void stdlib_strided_s_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3788,7 +3788,7 @@ The function accepts the following arguments: void stdlib_strided_s_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3829,7 +3829,7 @@ The function accepts the following arguments: void stdlib_strided_s_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_c_as_s_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_c_as_s_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3870,7 +3870,7 @@ The function accepts the following arguments: void stdlib_strided_s_c_as_s_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3911,7 +3911,7 @@ The function accepts the following arguments: void stdlib_strided_s_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3951,7 +3951,7 @@ The function accepts the following arguments: void stdlib_strided_s_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -3991,7 +3991,7 @@ The function accepts the following arguments: void stdlib_strided_s_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_d_as_s_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_d_as_s_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4031,7 +4031,7 @@ The function accepts the following arguments: void stdlib_strided_s_d_as_s_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4071,7 +4071,7 @@ The function accepts the following arguments: void stdlib_strided_s_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4111,7 +4111,7 @@ The function accepts the following arguments: void stdlib_strided_s_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_f_as_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_f_as_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4151,7 +4151,7 @@ The function accepts the following arguments: void stdlib_strided_s_f_as_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_f_as_s_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_f_as_s_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4191,7 +4191,7 @@ The function accepts the following arguments: void stdlib_strided_s_f_as_s_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4231,7 +4231,7 @@ The function accepts the following arguments: void stdlib_strided_s_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_i_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_i_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4271,7 +4271,7 @@ The function accepts the following arguments: void stdlib_strided_s_i_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_i_as_s_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_i_as_s_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4311,7 +4311,7 @@ The function accepts the following arguments: void stdlib_strided_s_i_as_s_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4351,7 +4351,7 @@ The function accepts the following arguments: void stdlib_strided_s_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_k_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_k_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4391,7 +4391,7 @@ The function accepts the following arguments: void stdlib_strided_s_k_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_k_as_k_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_k_as_k_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4431,7 +4431,7 @@ The function accepts the following arguments: void stdlib_strided_s_k_as_k_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_k_as_s_k( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_k_as_s_k( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4471,7 +4471,7 @@ The function accepts the following arguments: void stdlib_strided_s_k_as_s_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_s( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_s( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4511,7 +4511,7 @@ The function accepts the following arguments: void stdlib_strided_s_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_s_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_s_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4551,7 +4551,7 @@ The function accepts the following arguments: void stdlib_strided_s_s_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4591,7 +4591,7 @@ The function accepts the following arguments: void stdlib_strided_s_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_t_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_t_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4631,7 +4631,7 @@ The function accepts the following arguments: void stdlib_strided_s_t_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4671,7 +4671,7 @@ The function accepts the following arguments: void stdlib_strided_s_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_u_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_u_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4711,7 +4711,7 @@ The function accepts the following arguments: void stdlib_strided_s_u_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4751,7 +4751,7 @@ The function accepts the following arguments: void stdlib_strided_s_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_z_as_s_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_z_as_s_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4792,7 +4792,7 @@ The function accepts the following arguments: void stdlib_strided_s_z_as_s_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_s_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_s_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4833,7 +4833,7 @@ The function accepts the following arguments: void stdlib_strided_s_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4873,7 +4873,7 @@ The function accepts the following arguments: void stdlib_strided_t_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_c_as_c_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_c_as_c_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4914,7 +4914,7 @@ The function accepts the following arguments: void stdlib_strided_t_c_as_c_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_c_as_t_c( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_c_as_t_c( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4955,7 +4955,7 @@ The function accepts the following arguments: void stdlib_strided_t_c_as_t_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_c_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_c_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -4996,7 +4996,7 @@ The function accepts the following arguments: void stdlib_strided_t_c_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5036,7 +5036,7 @@ The function accepts the following arguments: void stdlib_strided_t_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5076,7 +5076,7 @@ The function accepts the following arguments: void stdlib_strided_t_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_d_as_t_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_d_as_t_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5116,7 +5116,7 @@ The function accepts the following arguments: void stdlib_strided_t_d_as_t_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5156,7 +5156,7 @@ The function accepts the following arguments: void stdlib_strided_t_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_f_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_f_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5196,7 +5196,7 @@ The function accepts the following arguments: void stdlib_strided_t_f_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_f_as_f_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_f_as_f_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5236,7 +5236,7 @@ The function accepts the following arguments: void stdlib_strided_t_f_as_f_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_f_as_t_f( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_f_as_t_f( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5276,7 +5276,7 @@ The function accepts the following arguments: void stdlib_strided_t_f_as_t_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5316,7 +5316,7 @@ The function accepts the following arguments: void stdlib_strided_t_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_i_as_i_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_i_as_i_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5356,7 +5356,7 @@ The function accepts the following arguments: void stdlib_strided_t_i_as_i_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_i_as_t_i( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_i_as_t_i( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5396,7 +5396,7 @@ The function accepts the following arguments: void stdlib_strided_t_i_as_t_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_t( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_t( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5436,7 +5436,7 @@ The function accepts the following arguments: void stdlib_strided_t_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_t_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_t_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5476,7 +5476,7 @@ The function accepts the following arguments: void stdlib_strided_t_t_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5516,7 +5516,7 @@ The function accepts the following arguments: void stdlib_strided_t_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_u_as_t_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_u_as_t_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5556,7 +5556,7 @@ The function accepts the following arguments: void stdlib_strided_t_u_as_t_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_u_as_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_u_as_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5596,7 +5596,7 @@ The function accepts the following arguments: void stdlib_strided_t_u_as_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5636,7 +5636,7 @@ The function accepts the following arguments: void stdlib_strided_t_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_z_as_t_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_z_as_t_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5677,7 +5677,7 @@ The function accepts the following arguments: void stdlib_strided_t_z_as_t_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_t_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_t_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5718,7 +5718,7 @@ The function accepts the following arguments: void stdlib_strided_t_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5758,7 +5758,7 @@ The function accepts the following arguments: void stdlib_strided_u_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_d_as_d_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_d_as_d_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5798,7 +5798,7 @@ The function accepts the following arguments: void stdlib_strided_u_d_as_d_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_d_as_u_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_d_as_u_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5838,7 +5838,7 @@ The function accepts the following arguments: void stdlib_strided_u_d_as_u_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_u( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_u( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5878,7 +5878,7 @@ The function accepts the following arguments: void stdlib_strided_u_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5918,7 +5918,7 @@ The function accepts the following arguments: void stdlib_strided_u_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_z_as_u_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_z_as_u_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -5959,7 +5959,7 @@ The function accepts the following arguments: void stdlib_strided_u_z_as_u_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_u_z_as_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_u_z_as_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6000,7 +6000,7 @@ The function accepts the following arguments: void stdlib_strided_u_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_d_as_z_d( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_d_as_z_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6041,7 +6041,7 @@ The function accepts the following arguments: void stdlib_strided_z_d_as_z_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` -#### stdlib_strided_z_z( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_z_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. @@ -6345,6 +6345,18 @@ int main( void ) { @@ -6355,6 +6367,24 @@ int main( void ) { [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray + + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + +[@stdlib/strided/base/dmap]: https://github.com/stdlib-js/strided/tree/main/base/dmap + +[@stdlib/strided/base/nullary]: https://github.com/stdlib-js/strided/tree/main/base/nullary + +[@stdlib/strided/base/quaternary]: https://github.com/stdlib-js/strided/tree/main/base/quaternary + +[@stdlib/strided/base/quinary]: https://github.com/stdlib-js/strided/tree/main/base/quinary + +[@stdlib/strided/base/smap]: https://github.com/stdlib-js/strided/tree/main/base/smap + +[@stdlib/strided/base/ternary]: https://github.com/stdlib-js/strided/tree/main/base/ternary + + + diff --git a/base/zmap/README.md b/base/zmap/README.md index 1aa8b51e..54d0c691 100644 --- a/base/zmap/README.md +++ b/base/zmap/README.md @@ -349,6 +349,13 @@ int main( void ) { @@ -359,6 +366,14 @@ int main( void ) { [@stdlib/array/complex128]: https://github.com/stdlib-js/array-complex128 + + +[@stdlib/strided/base/cmap]: https://github.com/stdlib-js/strided/tree/main/base/cmap + +[@stdlib/strided/base/unary]: https://github.com/stdlib-js/strided/tree/main/base/unary + + + diff --git a/dispatch-by/README.md b/dispatch-by/README.md index 3e4d4b06..8eed9c8e 100644 --- a/dispatch-by/README.md +++ b/dispatch-by/README.md @@ -208,7 +208,7 @@ The function accepts the following arguments: ```javascript var unaryBy = require( '@stdlib/strided/base/unary-by' ); - + function foo( x ) { return x * 10.0; } @@ -243,7 +243,7 @@ The function accepts the following arguments: ```javascript var unaryBy = require( '@stdlib/strided/base/unary-by' ); - + function foo( x ) { return x * 10.0; } @@ -309,6 +309,12 @@ console.log( y ); @@ -319,6 +325,12 @@ console.log( y ); [@stdlib/strided/dtypes]: https://github.com/stdlib-js/strided/tree/main/dtypes + + +[@stdlib/strided/dispatch]: https://github.com/stdlib-js/strided/tree/main/dispatch + + + diff --git a/dispatch/README.md b/dispatch/README.md index c5aaad86..a9b4afbe 100644 --- a/dispatch/README.md +++ b/dispatch/README.md @@ -198,7 +198,7 @@ The function accepts the following arguments: ```javascript var unary = require( '@stdlib/strided/base/unary' ); - + function foo( x ) { return x * 10.0; } @@ -229,7 +229,7 @@ The function accepts the following arguments: ```javascript var unary = require( '@stdlib/strided/base/unary' ); - + function foo( x ) { return x * 10.0; } diff --git a/napi/addon-arguments/README.md b/napi/addon-arguments/README.md index 572438da..556dd962 100644 --- a/napi/addon-arguments/README.md +++ b/napi/addon-arguments/README.md @@ -106,7 +106,7 @@ console.log( headerDir ); -#### stdlib_strided_napi_addon_arguments( env, argv, nargs, nin, \*arrays[], \*shape, \*strides, \*types, \*err ) +#### stdlib_strided_napi_addon_arguments( env, argv, nargs, nin, \*arrays\[], \*shape, \*strides, \*types, \*err ) Validates, extracts, and transforms (to native C types) function arguments provided to a strided array Node-API add-on interface.