diff --git a/.editorconfig b/.editorconfig
deleted file mode 100644
index dab5d2a..0000000
--- a/.editorconfig
+++ /dev/null
@@ -1,180 +0,0 @@
-#/
-# @license Apache-2.0
-#
-# Copyright (c) 2017 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.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#/
-
-# EditorConfig configuration file (see ).
-
-# Indicate that this file is a root-level configuration file:
-root = true
-
-# Set properties for all files:
-[*]
-end_of_line = lf
-charset = utf-8
-trim_trailing_whitespace = true
-insert_final_newline = true
-
-# Set properties for JavaScript files:
-[*.{js,js.txt}]
-indent_style = tab
-
-# Set properties for JavaScript ES module files:
-[*.{mjs,mjs.txt}]
-indent_style = tab
-
-# Set properties for JavaScript CommonJS files:
-[*.{cjs,cjs.txt}]
-indent_style = tab
-
-# Set properties for JSON files:
-[*.{json,json.txt}]
-indent_style = space
-indent_size = 2
-
-# Set properties for `cli_opts.json` files:
-[cli_opts.json]
-indent_style = tab
-
-# Set properties for TypeScript files:
-[*.ts]
-indent_style = tab
-
-# Set properties for Python files:
-[*.{py,py.txt}]
-indent_style = space
-indent_size = 4
-
-# Set properties for Julia files:
-[*.{jl,jl.txt}]
-indent_style = tab
-
-# Set properties for R files:
-[*.{R,R.txt}]
-indent_style = tab
-
-# Set properties for C files:
-[*.{c,c.txt}]
-indent_style = tab
-
-# Set properties for C header files:
-[*.{h,h.txt}]
-indent_style = tab
-
-# Set properties for C++ files:
-[*.{cpp,cpp.txt}]
-indent_style = tab
-
-# Set properties for C++ header files:
-[*.{hpp,hpp.txt}]
-indent_style = tab
-
-# Set properties for Fortran files:
-[*.{f,f.txt}]
-indent_style = space
-indent_size = 2
-
-# Set properties for shell files:
-[*.{sh,sh.txt}]
-indent_style = tab
-
-# Set properties for AWK files:
-[*.{awk,awk.txt}]
-indent_style = tab
-
-# Set properties for HTML files:
-[*.{html,html.txt}]
-indent_style = tab
-tab_width = 2
-
-# Set properties for XML files:
-[*.{xml,xml.txt}]
-indent_style = tab
-tab_width = 2
-
-# Set properties for CSS files:
-[*.{css,css.txt}]
-indent_style = tab
-
-# Set properties for Makefiles:
-[Makefile]
-indent_style = tab
-
-[*.{mk,mk.txt}]
-indent_style = tab
-
-# Set properties for Markdown files:
-[*.{md,md.txt}]
-indent_style = space
-indent_size = 4
-trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
-
-# Set properties for `usage.txt` files:
-[usage.txt]
-indent_style = space
-indent_size = 2
-
-# Set properties for `repl.txt` files:
-[repl.txt]
-indent_style = space
-indent_size = 4
-
-# Set properties for `package.json` files:
-[package.{json,json.txt}]
-indent_style = space
-indent_size = 2
-
-# Set properties for `datapackage.json` files:
-[datapackage.json]
-indent_style = space
-indent_size = 2
-
-# Set properties for `manifest.json` files:
-[manifest.json]
-indent_style = space
-indent_size = 2
-
-# Set properties for `tsconfig.json` files:
-[tsconfig.json]
-indent_style = space
-indent_size = 2
-
-# Set properties for LaTeX files:
-[*.{tex,tex.txt}]
-indent_style = tab
-
-# Set properties for LaTeX Bibliography files:
-[*.{bib,bib.txt}]
-indent_style = tab
-
-# Set properties for YAML files:
-[*.{yml,yml.txt}]
-indent_style = space
-indent_size = 2
-
-# Set properties for GYP files:
-[binding.gyp]
-indent_style = space
-indent_size = 2
-
-[*.gypi]
-indent_style = space
-indent_size = 2
-
-# Set properties for citation files:
-[*.{cff,cff.txt}]
-indent_style = space
-indent_size = 2
diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644
index 5f30286..0000000
--- a/.eslintrc.js
+++ /dev/null
@@ -1 +0,0 @@
-/* For the `eslint` rules of this project, consult the main repository at https://github.com/stdlib-js/stdlib */
diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 1c88e69..0000000
--- a/.gitattributes
+++ /dev/null
@@ -1,66 +0,0 @@
-#/
-# @license Apache-2.0
-#
-# Copyright (c) 2017 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.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#/
-
-# Configuration file which assigns attributes to pathnames.
-#
-# [1]: https://git-scm.com/docs/gitattributes
-
-# Automatically normalize the line endings of any committed text files:
-* text=auto
-
-# Override line endings for certain files on checkout:
-*.crlf.csv text eol=crlf
-
-# Denote that certain files are binary and should not be modified:
-*.png binary
-*.jpg binary
-*.jpeg binary
-*.gif binary
-*.ico binary
-*.gz binary
-*.zip binary
-*.7z binary
-*.mp3 binary
-*.mp4 binary
-*.mov binary
-
-# Override what is considered "vendored" by GitHub's linguist:
-/lib/node_modules/** -linguist-vendored -linguist-generated
-
-# Configure directories which should *not* be included in GitHub language statistics:
-/deps/** linguist-vendored
-/dist/** linguist-generated
-/workshops/** linguist-vendored
-
-benchmark/** linguist-vendored
-docs/* linguist-documentation
-etc/** linguist-vendored
-examples/** linguist-documentation
-scripts/** linguist-vendored
-test/** linguist-vendored
-tools/** linguist-vendored
-
-# Configure files which should *not* be included in GitHub language statistics:
-Makefile linguist-vendored
-*.mk linguist-vendored
-*.jl linguist-vendored
-*.py linguist-vendored
-*.R linguist-vendored
-
-# Configure files which should be included in GitHub language statistics:
-docs/types/*.d.ts -linguist-documentation
diff --git a/.github/.keepalive b/.github/.keepalive
deleted file mode 100644
index 3f45051..0000000
--- a/.github/.keepalive
+++ /dev/null
@@ -1 +0,0 @@
-2025-04-14T00:43:59.131Z
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index 46620f9..0000000
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-We are excited about your pull request, but unfortunately we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/int32) of the main repository where we’ll review and provide feedback.
-
-If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/contributing/development.md) for help on developing stdlib.
-
-We look forward to receiving your contribution! :smiley:
\ No newline at end of file
diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml
deleted file mode 100644
index e4f10fe..0000000
--- a/.github/workflows/benchmark.yml
+++ /dev/null
@@ -1,64 +0,0 @@
-#/
-# @license Apache-2.0
-#
-# Copyright (c) 2021 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.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#/
-
-# Workflow name:
-name: benchmark
-
-# Workflow triggers:
-on:
- # Allow the workflow to be manually run:
- workflow_dispatch:
-
-# Workflow jobs:
-jobs:
-
- # Define a job to run benchmarks:
- benchmark:
-
- # Define a display name:
- name: 'Run benchmarks'
-
- # Define the type of virtual host machine:
- runs-on: 'ubuntu-latest'
-
- # Define the sequence of job steps...
- steps:
-
- # Checkout the repository:
- - name: 'Checkout repository'
- # Pin action to full length commit SHA
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
-
- # Install Node.js:
- - name: 'Install Node.js'
- # Pin action to full length commit SHA
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
- with:
- node-version: 20
- timeout-minutes: 5
-
- # Install dependencies:
- - name: 'Install production and development dependencies'
- run: |
- npm install || npm install || npm install
- timeout-minutes: 15
-
- # Run benchmarks:
- - name: 'Run benchmarks'
- run: |
- npm run benchmark
diff --git a/.github/workflows/cancel.yml b/.github/workflows/cancel.yml
deleted file mode 100644
index b5291db..0000000
--- a/.github/workflows/cancel.yml
+++ /dev/null
@@ -1,57 +0,0 @@
-#/
-# @license Apache-2.0
-#
-# Copyright (c) 2021 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.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#/
-
-# Workflow name:
-name: cancel
-
-# Workflow triggers:
-on:
- # Allow the workflow to be manually run:
- workflow_dispatch:
-
-# Workflow jobs:
-jobs:
-
- # Define a job to cancel existing workflow runs:
- cancel:
-
- # Define a display name:
- name: 'Cancel workflow runs'
-
- # Define the type of virtual host machine:
- runs-on: 'ubuntu-latest'
-
- # Time limit:
- timeout-minutes: 3
-
- # Define the sequence of job steps...
- steps:
-
- # Cancel existing workflow runs:
- - name: 'Cancel existing workflow runs'
- # Pin action to full length commit SHA
- uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # v0.12.1
- with:
- workflow_id: >-
- benchmark.yml,
- examples.yml,
- test.yml,
- test_coverage.yml,
- test_install.yml,
- publish.yml
- access_token: ${{ github.token }}
diff --git a/.github/workflows/close_pull_requests.yml b/.github/workflows/close_pull_requests.yml
deleted file mode 100644
index 291141d..0000000
--- a/.github/workflows/close_pull_requests.yml
+++ /dev/null
@@ -1,54 +0,0 @@
-#/
-# @license Apache-2.0
-#
-# Copyright (c) 2021 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.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#/
-
-# Workflow name:
-name: close_pull_requests
-
-# Workflow triggers:
-on:
- pull_request_target:
- types: [opened]
-
-# Workflow jobs:
-jobs:
-
- # Define job to close all pull requests:
- run:
-
- # Define the type of virtual host machine on which to run the job:
- runs-on: ubuntu-latest
-
- # Define the sequence of job steps...
- steps:
-
- # Close pull request
- - name: 'Close pull request'
- # Pin action to full length commit SHA corresponding to v3.1.2
- uses: superbrothers/close-pull-request@9c18513d320d7b2c7185fb93396d0c664d5d8448
- with:
- comment: |
- Thank you for submitting a pull request. :raised_hands:
-
- We greatly appreciate your willingness to submit a contribution. However, we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib).
-
- We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/int32) of the main repository where we’ll review and provide feedback. If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions.
-
- Thank you again, and we look forward to receiving your contribution! :smiley:
-
- Best,
- The stdlib team
\ No newline at end of file
diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml
deleted file mode 100644
index 2984901..0000000
--- a/.github/workflows/examples.yml
+++ /dev/null
@@ -1,64 +0,0 @@
-#/
-# @license Apache-2.0
-#
-# Copyright (c) 2021 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.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#/
-
-# Workflow name:
-name: examples
-
-# Workflow triggers:
-on:
- # Allow the workflow to be manually run:
- workflow_dispatch:
-
-# Workflow jobs:
-jobs:
-
- # Define a job to run the package examples...
- examples:
-
- # Define display name:
- name: 'Run examples'
-
- # Define the type of virtual host machine on which to run the job:
- runs-on: ubuntu-latest
-
- # Define the sequence of job steps...
- steps:
-
- # Checkout repository:
- - name: 'Checkout repository'
- # Pin action to full length commit SHA
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
-
- # Install Node.js:
- - name: 'Install Node.js'
- # Pin action to full length commit SHA
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
- with:
- node-version: 20
- timeout-minutes: 5
-
- # Install dependencies:
- - name: 'Install production and development dependencies'
- run: |
- npm install || npm install || npm install
- timeout-minutes: 15
-
- # Run examples:
- - name: 'Run examples'
- run: |
- npm run examples
diff --git a/.github/workflows/npm_downloads.yml b/.github/workflows/npm_downloads.yml
deleted file mode 100644
index 76deee8..0000000
--- a/.github/workflows/npm_downloads.yml
+++ /dev/null
@@ -1,112 +0,0 @@
-#/
-# @license Apache-2.0
-#
-# Copyright (c) 2022 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.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#/
-
-# Workflow name:
-name: npm_downloads
-
-# Workflow triggers:
-on:
- # Run this workflow weekly:
- schedule:
- # cron: ' '
- - cron: '2 2 * * 0'
-
- # Allow the workflow to be manually run:
- workflow_dispatch:
-
-# Workflow jobs:
-jobs:
-
- # Define a job for retrieving npm download counts...
- npm_downloads:
-
- # Define display name:
- name: 'Retrieve npm download counts'
-
- # Define the type of virtual host machine on which to run the job:
- runs-on: ubuntu-latest
-
- # Define the sequence of job steps...
- steps:
- # Checkout the repository:
- - name: 'Checkout repository'
- # Pin action to full length commit SHA
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- timeout-minutes: 10
-
- # Install Node.js:
- - name: 'Install Node.js'
- # Pin action to full length commit SHA
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
- with:
- node-version: 20
- timeout-minutes: 5
-
- # Resolve package name:
- - name: 'Resolve package name'
- id: package_name
- run: |
- name=`node -e 'console.log(require("./package.json").name)' | tr -d '\n'`
- echo "package_name=$name" >> $GITHUB_OUTPUT
- timeout-minutes: 5
-
- # Fetch download data:
- - name: 'Fetch data'
- id: download_data
- run: |
- url="https://api.npmjs.org/downloads/range/$(date --date='1 year ago' '+%Y-%m-%d'):$(date '+%Y-%m-%d')/${{ steps.package_name.outputs.package_name }}"
- echo "$url"
- data=$(curl "$url")
- mkdir ./tmp
- echo "$data" > ./tmp/npm_downloads.json
- echo "data=$data" >> $GITHUB_OUTPUT
- timeout-minutes: 5
-
- # Print summary of download data:
- - name: 'Print summary'
- run: |
- echo "| Date | Downloads |" >> $GITHUB_STEP_SUMMARY
- echo "|------|------------|" >> $GITHUB_STEP_SUMMARY
- cat ./tmp/npm_downloads.json | jq -r ".downloads | .[-14:] | to_entries | map(\"| \(.value.day) | \(.value.downloads) |\") |.[]" >> $GITHUB_STEP_SUMMARY
-
- # Upload the download data:
- - name: 'Upload data'
- # Pin action to full length commit SHA
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
- with:
- # Define a name for the uploaded artifact (ensuring a unique name for each job):
- name: npm_downloads
-
- # Specify the path to the file to upload:
- path: ./tmp/npm_downloads.json
-
- # Specify the number of days to retain the artifact (default is 90 days):
- retention-days: 90
- timeout-minutes: 10
- if: success()
-
- # Send data to events server:
- - name: 'Post data'
- # Pin action to full length commit SHA
- uses: distributhor/workflow-webhook@48a40b380ce4593b6a6676528cd005986ae56629 # v3.0.3
- env:
- webhook_url: ${{ secrets.STDLIB_NPM_DOWNLOADS_URL }}
- webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }}
- data: '{ "downloads": ${{ steps.download_data.outputs.data }} }'
- timeout-minutes: 5
- if: success()
diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml
deleted file mode 100644
index f4575e9..0000000
--- a/.github/workflows/productionize.yml
+++ /dev/null
@@ -1,794 +0,0 @@
-#/
-# @license Apache-2.0
-#
-# Copyright (c) 2022 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.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#/
-
-# Workflow name:
-name: productionize
-
-# Workflow triggers:
-on:
- # Run workflow when a new commit is pushed to the main branch:
- push:
- branches:
- - main
-
- # Allow the workflow to be manually run:
- workflow_dispatch:
- inputs:
- require-passing-tests:
- description: 'Require passing tests for creating bundles'
- type: boolean
- default: true
-
- # Run workflow upon completion of `publish` workflow run:
- workflow_run:
- workflows: ["publish"]
- types: [completed]
-
-
-# Concurrency group to prevent multiple concurrent executions:
-concurrency:
- group: productionize
- cancel-in-progress: true
-
-# Workflow jobs:
-jobs:
-
- # Define a job to create a production build...
- productionize:
-
- # Define display name:
- name: 'Productionize'
-
- # Define the type of virtual host machine:
- runs-on: 'ubuntu-latest'
-
- # Define the sequence of job steps...
- steps:
- # Checkout main branch of repository:
- - name: 'Checkout main branch'
- # Pin action to full length commit SHA
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- with:
- ref: main
-
- # Install Node.js:
- - name: 'Install Node.js'
- # Pin action to full length commit SHA
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
- with:
- node-version: 20
- timeout-minutes: 5
-
- # Create production branch:
- - name: 'Create production branch'
- run: |
- git checkout -b production
-
- # Transform error messages:
- - name: 'Transform error messages'
- id: transform-error-messages
- uses: stdlib-js/transform-errors-action@main
-
- # Change `@stdlib/string-format` to `@stdlib/error-tools-fmtprodmsg` in package.json if the former is a dependency, otherwise insert it as a dependency:
- - name: 'Update dependencies in package.json'
- run: |
- PKG_VERSION=$(npm view @stdlib/error-tools-fmtprodmsg version)
- if grep -q '"@stdlib/string-format"' package.json; then
- sed -i "s/\"@stdlib\/string-format\": \"^.*\"/\"@stdlib\/error-tools-fmtprodmsg\": \"^$PKG_VERSION\"/g" package.json
- else
- node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );"
- fi
-
- # Configure Git:
- - name: 'Configure Git'
- run: |
- git config --local user.email "noreply@stdlib.io"
- git config --local user.name "stdlib-bot"
-
- # Commit changes:
- - name: 'Commit changes'
- run: |
- git add -A
- git commit -m "Transform error messages"
-
- # Push changes:
- - name: 'Push changes'
- run: |
- SLUG=${{ github.repository }}
- echo "Pushing changes to $SLUG..."
- git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$SLUG.git" production --force
-
- # Define a job for running tests of the productionized code...
- test:
-
- # Define a display name:
- name: 'Run Tests'
-
- # Define the type of virtual host machine:
- runs-on: 'ubuntu-latest'
-
- # Indicate that this job depends on the prior job finishing:
- needs: productionize
-
- # Run this job regardless of the outcome of the prior job:
- if: always()
-
- # Define the sequence of job steps...
- steps:
-
- # Checkout the repository:
- - name: 'Checkout repository'
- if: ${{ github.event.inputs.require-passing-tests == 'true' }}
- # Pin action to full length commit SHA
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- with:
- # Use the `production` branch:
- ref: production
-
- # Install Node.js:
- - name: 'Install Node.js'
- if: ${{ github.event.inputs.require-passing-tests == 'true' }}
- # Pin action to full length commit SHA
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
- with:
- node-version: 20
- timeout-minutes: 5
-
- # Install dependencies:
- - name: 'Install production and development dependencies'
- if: ${{ github.event.inputs.require-passing-tests == 'true' }}
- id: install
- run: |
- npm install || npm install || npm install
- timeout-minutes: 15
-
- # Build native add-on if present:
- - name: 'Build native add-on (if present)'
- if: ${{ github.event.inputs.require-passing-tests == 'true' }}
- run: |
- if [ -f "binding.gyp" ]; then
- npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
- fi
-
- # Run tests:
- - name: 'Run tests'
- if: ${{ github.event.inputs.require-passing-tests == 'true' }}
- id: tests
- run: |
- npm test || npm test || npm test
-
- # Define job to create a bundle for use in Deno...
- deno:
-
- # Define display name:
- name: 'Create Deno bundle'
-
- # Define the type of virtual host machine on which to run the job:
- runs-on: ubuntu-latest
-
- # Indicate that this job depends on the test job finishing:
- needs: test
-
- # Define the sequence of job steps...
- steps:
- # Checkout the repository:
- - name: 'Checkout repository'
- # Pin action to full length commit SHA
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
-
- # Configure Git:
- - name: 'Configure Git'
- run: |
- git config --local user.email "noreply@stdlib.io"
- git config --local user.name "stdlib-bot"
-
- # Check if remote `deno` branch exists:
- - name: 'Check if remote `deno` branch exists'
- id: deno-branch-exists
- continue-on-error: true
- run: |
- git fetch --all
- git ls-remote --exit-code --heads origin deno
- if [ $? -eq 0 ]; then
- echo "remote-exists=true" >> $GITHUB_OUTPUT
- else
- echo "remote-exists=false" >> $GITHUB_OUTPUT
- fi
-
- # If `deno` exists, delete everything in branch and merge `production` into it
- - name: 'If `deno` exists, delete everything in branch and merge `production` into it'
- if: steps.deno-branch-exists.outputs.remote-exists
- run: |
- git checkout -b deno origin/deno
-
- find . -type 'f' | grep -v -e ".git/" -e "package.json" -e "README.md" -e "LICENSE" -e "CONTRIBUTORS" -e "NOTICE" | xargs -r rm
- find . -mindepth 1 -type 'd' | grep -v -e ".git" | xargs -r rm -rf
-
- git add -A
- git commit -m "Remove files" --allow-empty
-
- git config merge.theirs.name 'simulate `-s theirs`'
- git config merge.theirs.driver 'cat %B > %A'
- GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories
-
- # Copy files from `production` branch if necessary:
- git checkout origin/production -- .
- if [ -n "$(git status --porcelain)" ]; then
- git add -A
- git commit -m "Auto-generated commit"
- fi
-
- # If `deno` does not exist, create `deno` branch:
- - name: 'If `deno` does not exist, create `deno` branch'
- if: ${{ steps.deno-branch-exists.outputs.remote-exists == false }}
- run: |
- git checkout production
- git checkout -b deno
-
- # Copy files to deno directory:
- - name: 'Copy files to deno directory'
- run: |
- mkdir -p deno
- cp README.md LICENSE CONTRIBUTORS NOTICE ./deno
-
- # Copy TypeScript definitions to deno directory:
- if [ -d index.d.ts ]; then
- cp index.d.ts ./deno/index.d.ts
- fi
- if [ -e ./docs/types/index.d.ts ]; then
- cp ./docs/types/index.d.ts ./deno/mod.d.ts
- fi
-
- # Install Node.js:
- - name: 'Install Node.js'
- # Pin action to full length commit SHA
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
- with:
- node-version: 20
- timeout-minutes: 5
-
- # Install dependencies:
- - name: Install production and development dependencies
- id: install
- run: |
- npm install || npm install || npm install
- timeout-minutes: 15
-
- # Bundle package for use in Deno:
- - name: 'Bundle package for Deno'
- id: deno-bundle
- uses: stdlib-js/bundle-action@main
- with:
- target: 'deno'
-
- # Rewrite file contents:
- - name: 'Rewrite file contents'
- run: |
- # Replace links to other packages with links to the deno branch:
- find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "/\/tree\/main/b; /^\[@stdlib[^:]+: https:\/\/github.com\/stdlib-js\// s/(.*)/\\1\/tree\/deno/";
-
- # Replace reference to `@stdlib/types` with CDN link:
- find ./deno -type f -name '*.ts' -print0 | xargs -0 -r sed -Ei "s/\/\/\/ /\/\/\/ /g"
-
- # Change wording of project description to avoid reference to JavaScript and Node.js:
- find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/a standard library for JavaScript and Node.js, /a standard library /g"
-
- # Rewrite all `require()`s to use jsDelivr links:
- find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "/require\( '@stdlib\// {
- s/(var|let|const)\s+([a-z0-9_]+)\s+=\s*require\( '([^']+)' \);/import \2 from \'\3\';/i
- s/@stdlib/https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js/
- s/';/@deno\/mod.js';/
- }"
-
- # Rewrite first `import` to show importing of named exports if available:
- exports=$(cat lib/index.js | \
- grep -E 'setReadOnly\(.*,.*,.*\)' | \
- sed -E 's/setReadOnly\((.*),(.*),(.*)\);/\2/' | \
- sed -E "s/'//g" | \
- sort)
- if [ -n "$exports" ]; then
- find ./deno -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/\`\`\`javascript\nimport\s+([a-zA-Z0-9_]+)\s+from\s*'([^']+)';\n\`\`\`/\`\`\`javascript\nimport \1 from '\2';\n\`\`\`\n\nYou can also import the following named exports from the package:\n\n\`\`\`javascript\nimport { $(echo $exports | sed -E 's/ /, /g') } from '\2';\n\`\`\`/"
- fi
-
- # Remove `installation`, `cli`, and `c` sections:
- find ./deno -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/[^<]+<\/section>//g;"
- find ./deno -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?[\s\S]+<\!\-\- \/.cli \-\->//g"
- find ./deno -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?[\s\S]+<\!\-\- \/.c \-\->//g"
-
- # Create package.json file for deno branch:
- jq --indent 2 '{"name": .name, "version": .version, "description": .description, "license": .license, "type": "module", "main": "./mod.js", "homepage": .homepage, "repository": .repository, "bugs": .bugs, "keywords": .keywords, "funding": .funding}' package.json > ./deno/package.json
-
- # Delete everything in current directory aside from deno folder:
- - name: 'Delete everything in current directory aside from deno folder'
- run: |
- find . -type 'f' | grep -v -e "deno" -e ".git/" | xargs -r rm
- find . -mindepth 1 -type 'd' | grep -v -e "deno" -e ".git" | xargs -r rm -rf
-
- # Move deno directory to root:
- - name: 'Move deno directory to root'
- run: |
- mv ./deno/* .
- rmdir ./deno
-
- # Commit changes:
- - name: 'Commit changes'
- run: |
- git add -A
- git commit -m "Auto-generated commit"
-
- # Push changes to `deno` branch:
- - name: 'Push changes to `deno` branch'
- run: |
- SLUG=${{ github.repository }}
- echo "Pushing changes to $SLUG..."
- git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$SLUG.git" deno
-
- # Send status to Slack channel if job fails:
- - name: 'Send status to Slack channel in case of failure'
- # Pin action to full length commit SHA
- uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
- with:
- status: ${{ job.status }}
- channel: '#npm-ci'
- if: failure()
-
- # Define job to create a UMD bundle...
- umd:
-
- # Define display name:
- name: 'Create UMD bundle'
-
- # Define the type of virtual host machine on which to run the job:
- runs-on: ubuntu-latest
-
- # Indicate that this job depends on the test job finishing:
- needs: test
-
- # Define the sequence of job steps...
- steps:
- # Checkout the repository:
- - name: 'Checkout repository'
- # Pin action to full length commit SHA
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
-
- # Configure Git:
- - name: 'Configure Git'
- run: |
- git config --local user.email "noreply@stdlib.io"
- git config --local user.name "stdlib-bot"
-
- # Check if remote `umd` branch exists:
- - name: 'Check if remote `umd` branch exists'
- id: umd-branch-exists
- continue-on-error: true
- run: |
- git fetch --all
- git ls-remote --exit-code --heads origin umd
- if [ $? -eq 0 ]; then
- echo "remote-exists=true" >> $GITHUB_OUTPUT
- else
- echo "remote-exists=false" >> $GITHUB_OUTPUT
- fi
-
- # If `umd` exists, delete everything in branch and merge `production` into it
- - name: 'If `umd` exists, delete everything in branch and merge `production` into it'
- if: steps.umd-branch-exists.outputs.remote-exists
- run: |
- git checkout -b umd origin/umd
-
- find . -type 'f' | grep -v -e ".git/" -e "package.json" -e "README.md" -e "LICENSE" -e "CONTRIBUTORS" -e "NOTICE" | xargs -r rm
- find . -mindepth 1 -type 'd' | grep -v -e ".git" | xargs -r rm -rf
-
- git add -A
- git commit -m "Remove files" --allow-empty
-
- git config merge.theirs.name 'simulate `-s theirs`'
- git config merge.theirs.driver 'cat %B > %A'
- GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories
-
- # Copy files from `production` branch if necessary:
- git checkout origin/production -- .
- if [ -n "$(git status --porcelain)" ]; then
- git add -A
- git commit -m "Auto-generated commit"
- fi
-
- # If `umd` does not exist, create `umd` branch:
- - name: 'If `umd` does not exist, create `umd` branch'
- if: ${{ steps.umd-branch-exists.outputs.remote-exists == false }}
- run: |
- git checkout production
- git checkout -b umd
-
- # Copy files to umd directory:
- - name: 'Copy files to umd directory'
- run: |
- mkdir -p umd
- cp README.md LICENSE CONTRIBUTORS NOTICE ./umd
-
- # Install Node.js
- - name: 'Install Node.js'
- # Pin action to full length commit SHA
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
- with:
- node-version: 20
- timeout-minutes: 5
-
- # Install dependencies:
- - name: 'Install production and development dependencies'
- id: install
- run: |
- npm install || npm install || npm install
- timeout-minutes: 15
-
- # Extract alias:
- - name: 'Extract alias'
- id: extract-alias
- run: |
- alias=$(grep -E 'require\(' README.md | head -n 1 | sed -E 's/^var ([a-zA-Z0-9_]+) = .+/\1/')
- echo "alias=${alias}" >> $GITHUB_OUTPUT
-
- # Create Universal Module Definition (UMD) Node.js bundle:
- - name: 'Create Universal Module Definition (UMD) Node.js bundle'
- id: umd-bundle-node
- uses: stdlib-js/bundle-action@main
- with:
- target: 'umd-node'
- alias: ${{ steps.extract-alias.outputs.alias }}
-
- # Create Universal Module Definition (UMD) browser bundle:
- - name: 'Create Universal Module Definition (UMD) browser bundle'
- id: umd-bundle-browser
- uses: stdlib-js/bundle-action@main
- with:
- target: 'umd-browser'
- alias: ${{ steps.extract-alias.outputs.alias }}
-
- # Rewrite file contents:
- - name: 'Rewrite file contents'
- run: |
-
- # Replace links to other packages with links to the umd branch:
- find ./umd -type f -name '*.md' -print0 | xargs -0 sed -Ei "/\/tree\/main/b; /^\[@stdlib[^:]+: https:\/\/github.com\/stdlib-js\// s/(.*)/\\1\/tree\/umd/";
-
- # Remove `installation`, `cli`, and `c` sections:
- find ./umd -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/[^<]+<\/section>//g;"
- find ./umd -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?[\s\S]+<\!\-\- \/.cli \-\->//g"
- find ./umd -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?[\s\S]+<\!\-\- \/.c \-\->//g"
-
- # Rewrite first `require()` to show consumption of the UMD bundle in Observable and via a `script` tag:
- find ./umd -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/\`\`\`javascript\n(var|let|const)\s+([a-zA-Z0-9_]+)\s+=\s*require\( '\@stdlib\/([^']+)' \);\n\`\`\`/To use in Observable,\n\n\`\`\`javascript\n\2 = require\( 'https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js\/\3\@umd\/browser.js' \)\n\`\`\`\n\nTo vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:\n\n\`\`\`javascript\nvar \2 = require\( 'path\/to\/vendor\/umd\/\3\/index.js' \)\n\`\`\`\n\nTo include the bundle in a webpage,\n\n\`\`\`html\n
+```
-```javascript
-var Int32Array = require( '@stdlib/array-int32' );
+If no recognized module system is present, access bundle contents via the global scope:
+
+```html
+
```
#### Int32Array()
@@ -1424,10 +1430,15 @@ var bool = it.next().done;
-```javascript
-var randu = require( '@stdlib/random-base-randu' );
-var round = require( '@stdlib/math-base-special-round' );
-var ctor = require( '@stdlib/array-int32' );
+```html
+
+
+
+
+
+
+
+
+
```
@@ -1549,23 +1565,23 @@ Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].
-[@stdlib/array/buffer]: https://github.com/stdlib-js/array-buffer
+[@stdlib/array/buffer]: https://github.com/stdlib-js/array-buffer/tree/umd
-[@stdlib/array/float32]: https://github.com/stdlib-js/array-float32
+[@stdlib/array/float32]: https://github.com/stdlib-js/array-float32/tree/umd
-[@stdlib/array/float64]: https://github.com/stdlib-js/array-float64
+[@stdlib/array/float64]: https://github.com/stdlib-js/array-float64/tree/umd
-[@stdlib/array/int16]: https://github.com/stdlib-js/array-int16
+[@stdlib/array/int16]: https://github.com/stdlib-js/array-int16/tree/umd
-[@stdlib/array/int8]: https://github.com/stdlib-js/array-int8
+[@stdlib/array/int8]: https://github.com/stdlib-js/array-int8/tree/umd
-[@stdlib/array/uint16]: https://github.com/stdlib-js/array-uint16
+[@stdlib/array/uint16]: https://github.com/stdlib-js/array-uint16/tree/umd
-[@stdlib/array/uint32]: https://github.com/stdlib-js/array-uint32
+[@stdlib/array/uint32]: https://github.com/stdlib-js/array-uint32/tree/umd
-[@stdlib/array/uint8]: https://github.com/stdlib-js/array-uint8
+[@stdlib/array/uint8]: https://github.com/stdlib-js/array-uint8/tree/umd
-[@stdlib/array/uint8c]: https://github.com/stdlib-js/array-uint8c
+[@stdlib/array/uint8c]: https://github.com/stdlib-js/array-uint8c/tree/umd
diff --git a/SECURITY.md b/SECURITY.md
deleted file mode 100644
index 9702d4c..0000000
--- a/SECURITY.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# Security
-
-> Policy for reporting security vulnerabilities.
-
-See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
diff --git a/benchmark/benchmark.copy_within.js b/benchmark/benchmark.copy_within.js
deleted file mode 100644
index 0216791..0000000
--- a/benchmark/benchmark.copy_within.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':copyWithin', function benchmark( b ) {
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = i % 255;
- arr[ 0 ] = v;
- arr = arr.copyWithin( 1, 0 );
- if ( arr[ 0 ] !== v ) {
- b.fail( 'unexpected result' );
- }
- }
- b.toc();
- if ( arr[ 0 ] !== arr[ 0 ] ) {
- b.fail( 'should not be NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.copy_within.length.js b/benchmark/benchmark.copy_within.length.js
deleted file mode 100644
index 9a3eab7..0000000
--- a/benchmark/benchmark.copy_within.length.js
+++ /dev/null
@@ -1,95 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var v;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = i % 255;
- arr[ 0 ] = v;
- arr = arr.copyWithin( 1, 0 );
- if ( arr[ 0 ] !== v ) {
- b.fail( 'unexpected result' );
- }
- }
- b.toc();
- if ( arr[ 0 ] !== arr[ 0 ] ) {
- b.fail( 'should not be NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':copyWithin:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.data.js b/benchmark/benchmark.data.js
deleted file mode 100644
index f6c7a28..0000000
--- a/benchmark/benchmark.data.js
+++ /dev/null
@@ -1,75 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+'::get,index', function benchmark( b ) {
- var arr;
- var N;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
- N = arr.length;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = arr[ i%N ];
- if ( v !== v ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( v !== v ) {
- b.fail( 'should not return NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
-
-bench( pkg+'::set,index', function benchmark( b ) {
- var arr;
- var N;
- var i;
-
- arr = new Int32Array( 2 );
- N = arr.length;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ i%N ] = i;
- if ( arr[ 0 ] !== arr[ 0 ] ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( arr[ 0 ] !== arr[ 0 ] || arr[ 1 ] !== arr[ 1 ] ) {
- b.fail( 'should not return NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.entries.js b/benchmark/benchmark.entries.js
deleted file mode 100644
index 468b1f3..0000000
--- a/benchmark/benchmark.entries.js
+++ /dev/null
@@ -1,50 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':entries', function benchmark( b ) {
- var iter;
- var arr;
- var i;
-
- arr = new Int32Array( [ 1, 2 ] );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- iter = arr.entries();
- if ( typeof iter !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( typeof iter !== 'object' || typeof iter.next !== 'function' ) {
- b.fail( 'should return an iterator protocol-compliant object' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.every.js b/benchmark/benchmark.every.js
deleted file mode 100644
index 0b9562d..0000000
--- a/benchmark/benchmark.every.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':every', function benchmark( b ) {
- var bool;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- bool = arr.every( predicate );
- if ( typeof bool !== 'boolean' ) {
- b.fail( 'should return a boolean' );
- }
- }
- b.toc();
- if ( !isBoolean( bool ) ) {
- b.fail( 'should return a boolean' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v >= 0;
- }
-});
-
-bench( pkg+'::this_context:every', function benchmark( b ) {
- var bool;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- bool = arr.every( predicate, {} );
- if ( typeof bool !== 'boolean' ) {
- b.fail( 'should return a boolean' );
- }
- }
- b.toc();
- if ( !isBoolean( bool ) ) {
- b.fail( 'should return a boolean' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v >= 0;
- }
-});
diff --git a/benchmark/benchmark.every.length.js b/benchmark/benchmark.every.length.js
deleted file mode 100644
index 4f481c3..0000000
--- a/benchmark/benchmark.every.length.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Returns a boolean indicating whether an array element passes a test.
-*
-* @private
-* @param {*} value - value to test
-* @returns {boolean} boolean indicating whether an array element passes a test
-*/
-function predicate( value ) {
- return value >= 0.0;
-}
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var bool;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- bool = arr.every( predicate );
- if ( typeof bool !== 'boolean' ) {
- b.fail( 'should return a boolean' );
- }
- }
- b.toc();
- if ( !isBoolean( bool ) ) {
- b.fail( 'should return a boolean' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':every:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.fill.js b/benchmark/benchmark.fill.js
deleted file mode 100644
index 053bb90..0000000
--- a/benchmark/benchmark.fill.js
+++ /dev/null
@@ -1,51 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':fill', function benchmark( b ) {
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = i % 128;
- arr = arr.fill( v );
- if ( arr[ 0 ] !== v ) {
- b.fail( 'unexpected result' );
- }
- }
- b.toc();
- if ( arr[ 0 ] !== arr[ 0 ] ) {
- b.fail( 'should not be NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.fill.length.js b/benchmark/benchmark.fill.length.js
deleted file mode 100644
index d148ebe..0000000
--- a/benchmark/benchmark.fill.length.js
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var v;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = i % 128;
- arr = arr.fill( v );
- if ( arr[ 0 ] !== v ) {
- b.fail( 'unexpected result' );
- }
- }
- b.toc();
- if ( arr[ 0 ] !== arr[ 0 ] ) {
- b.fail( 'should not be NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':fill:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.filter.js b/benchmark/benchmark.filter.js
deleted file mode 100644
index 69b659a..0000000
--- a/benchmark/benchmark.filter.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':filter', function benchmark( b ) {
- var arr;
- var out;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.filter( predicate );
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v >= 0;
- }
-});
-
-bench( pkg+'::this_context:filter', function benchmark( b ) {
- var arr;
- var out;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.filter( predicate, {} );
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v >= 0;
- }
-});
diff --git a/benchmark/benchmark.filter.length.js b/benchmark/benchmark.filter.length.js
deleted file mode 100644
index c784774..0000000
--- a/benchmark/benchmark.filter.length.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Returns a boolean indicating whether an array element passes a test.
-*
-* @private
-* @param {*} value - value to test
-* @returns {boolean} boolean indicating whether an array element passes a test
-*/
-function predicate( value ) {
- return value >= 0;
-}
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.filter( predicate );
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 5; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':filter:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.find.js b/benchmark/benchmark.find.js
deleted file mode 100644
index ca728f2..0000000
--- a/benchmark/benchmark.find.js
+++ /dev/null
@@ -1,82 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':find', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- // Benchmark worst case scenario...
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.find( predicate );
- if ( typeof out !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- }
- b.toc();
- if ( typeof out !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v > 0;
- }
-});
-
-bench( pkg+'::this_context:find', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- // Benchmark worst case scenario...
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.find( predicate, {} );
- if ( typeof out !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- }
- b.toc();
- if ( typeof out !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v > 0;
- }
-});
diff --git a/benchmark/benchmark.find.length.js b/benchmark/benchmark.find.length.js
deleted file mode 100644
index 639974b..0000000
--- a/benchmark/benchmark.find.length.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Returns a boolean indicating whether an array element passes a test.
-*
-* @private
-* @param {*} value - value to test
-* @returns {boolean} boolean indicating whether an array element passes a test
-*/
-function predicate( value ) {
- return value > 0;
-}
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - tuple length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
-
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.find( predicate );
- if ( typeof out !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- }
- b.toc();
- if ( typeof out !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':find:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.find_index.js b/benchmark/benchmark.find_index.js
deleted file mode 100644
index 0009a28..0000000
--- a/benchmark/benchmark.find_index.js
+++ /dev/null
@@ -1,82 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':findIndex', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- // Benchmark worst case scenario...
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.findIndex( predicate );
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- }
- b.toc();
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v > 0;
- }
-});
-
-bench( pkg+'::this_context:findIndex', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- // Benchmark worst case scenario...
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.findIndex( predicate, {} );
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- }
- b.toc();
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v > 0;
- }
-});
diff --git a/benchmark/benchmark.find_index.length.js b/benchmark/benchmark.find_index.length.js
deleted file mode 100644
index 4e5c094..0000000
--- a/benchmark/benchmark.find_index.length.js
+++ /dev/null
@@ -1,104 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Returns a boolean indicating whether an array element passes a test.
-*
-* @private
-* @param {*} value - value to test
-* @returns {boolean} boolean indicating whether an array element passes a test
-*/
-function predicate( value ) {
- return value > 0;
-}
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.findIndex( predicate );
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- }
- b.toc();
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':findIndex:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.for_each.js b/benchmark/benchmark.for_each.js
deleted file mode 100644
index 3106682..0000000
--- a/benchmark/benchmark.for_each.js
+++ /dev/null
@@ -1,88 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':forEach', function benchmark( b ) {
- var count;
- var arr;
- var N;
- var i;
-
- arr = new Int32Array( 2 );
- N = arr.length;
-
- count = 0;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr.forEach( fcn );
- if ( count !== N*(i+1) ) {
- b.fail( 'unexpected result' );
- }
- }
- b.toc();
- if ( count !== N*i ) {
- b.fail( 'unexpected result' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function fcn() {
- count += 1;
- }
-});
-
-bench( pkg+'::this_context:forEach', function benchmark( b ) {
- var count;
- var arr;
- var N;
- var i;
-
- arr = new Int32Array( 2 );
- N = arr.length;
-
- count = 0;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr.forEach( fcn, {} );
- if ( count !== N*(i+1) ) {
- b.fail( 'unexpected result' );
- }
- }
- b.toc();
- if ( count !== N*i ) {
- b.fail( 'unexpected result' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function fcn() {
- count += 1;
- }
-});
diff --git a/benchmark/benchmark.for_each.length.js b/benchmark/benchmark.for_each.length.js
deleted file mode 100644
index b705dda..0000000
--- a/benchmark/benchmark.for_each.length.js
+++ /dev/null
@@ -1,106 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var count;
- var arr;
-
- arr = new Int32Array( len );
- count = 0;
-
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr.forEach( fcn );
- if ( count !== count ) {
- b.fail( 'should not be NaN' );
- }
- }
- b.toc();
- if ( count !== count ) {
- b.fail( 'should not be NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-
- /**
- * Callback invoked for each tuple element.
- *
- * @private
- */
- function fcn() {
- count += 1;
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':forEach:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.from.js b/benchmark/benchmark.from.js
deleted file mode 100644
index a968c8f..0000000
--- a/benchmark/benchmark.from.js
+++ /dev/null
@@ -1,237 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var ITERATOR_SYMBOL = require( '@stdlib/symbol-iterator' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// VARIABLES //
-
-var opts = {
- 'skip': ( ITERATOR_SYMBOL === null )
-};
-
-
-// MAIN //
-
-bench( pkg+'::typed_array:from', function benchmark( b ) {
- var buf;
- var arr;
- var i;
-
- buf = new Int32Array( [ 1, 2 ] );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = Int32Array.from( buf );
- if ( arr.length !== 2 ) {
- b.fail( 'should have length 2' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
-
-bench( pkg+'::typed_array,clbk:from', function benchmark( b ) {
- var buf;
- var arr;
- var i;
-
- buf = new Int32Array( [ 1, 2 ] );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = Int32Array.from( buf, clbk );
- if ( arr.length !== 2 ) {
- b.fail( 'should have length 2' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function clbk( v ) {
- return v + 1;
- }
-});
-
-bench( pkg+'::array:from', function benchmark( b ) {
- var buf;
- var arr;
- var i;
-
- buf = [ 1, 2 ];
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = Int32Array.from( buf );
- if ( arr.length !== 2 ) {
- b.fail( 'should have length 2' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
-
-bench( pkg+'::array,clbk:from', function benchmark( b ) {
- var buf;
- var arr;
- var i;
-
- buf = [ 1, 2 ];
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = Int32Array.from( buf, clbk );
- if ( arr.length !== 2 ) {
- b.fail( 'should have length 2' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function clbk( v ) {
- return v + 1;
- }
-});
-
-bench( pkg+'::iterable:from', opts, function benchmark( b ) {
- var arr;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = Int32Array.from( createIterable() );
- if ( arr.length !== 2 ) {
- b.fail( 'should have length 2' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function createIterable() {
- var out;
- var i;
-
- out = {};
- out[ ITERATOR_SYMBOL ] = iterator;
-
- i = 0;
-
- return out;
-
- function iterator() {
- return {
- 'next': next
- };
- }
-
- function next() {
- i += 1;
- if ( i <= 2 ) {
- return {
- 'value': 0,
- 'done': false
- };
- }
- return {
- 'done': true
- };
- }
- }
-});
-
-bench( pkg+'::iterable,clbk:from:', opts, function benchmark( b ) {
- var arr;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = Int32Array.from( createIterable(), clbk );
- if ( arr.length !== 2 ) {
- b.fail( 'should have length 2' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function createIterable() {
- var out;
- var i;
-
- out = {};
- out[ ITERATOR_SYMBOL ] = iterator;
-
- i = 0;
-
- return out;
-
- function iterator() {
- return {
- 'next': next
- };
- }
-
- function next() {
- i += 1;
- if ( i <= 2 ) {
- return {
- 'value': 1,
- 'done': false
- };
- }
- return {
- 'done': true
- };
- }
- }
-
- function clbk( v ) {
- return v + 1;
- }
-});
diff --git a/benchmark/benchmark.includes.js b/benchmark/benchmark.includes.js
deleted file mode 100644
index b52fca6..0000000
--- a/benchmark/benchmark.includes.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':includes', function benchmark( b ) {
- var bool;
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = (i%127) + 1;
- bool = arr.includes( v );
- if ( typeof bool !== 'boolean' ) {
- b.fail( 'should return a boolean' );
- }
- }
- b.toc();
- if ( !isBoolean( bool ) ) {
- b.fail( 'should return a boolean' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.includes.length.js b/benchmark/benchmark.includes.length.js
deleted file mode 100644
index 6f99916..0000000
--- a/benchmark/benchmark.includes.length.js
+++ /dev/null
@@ -1,96 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var bool;
- var v;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = (i%127) + 1;
- bool = arr.includes( v );
- if ( typeof bool !== 'boolean' ) {
- b.fail( 'should return a boolean' );
- }
- }
- b.toc();
- if ( !isBoolean( bool ) ) {
- b.fail( 'should return a boolean' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':includes:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.index_of.js b/benchmark/benchmark.index_of.js
deleted file mode 100644
index 18920b8..0000000
--- a/benchmark/benchmark.index_of.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':indexOf', function benchmark( b ) {
- var out;
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- // Benchmark worst case scenario...
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = (i%127) + 1;
- out = arr.indexOf( v );
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- }
- b.toc();
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.index_of.length.js b/benchmark/benchmark.index_of.length.js
deleted file mode 100644
index ecab6db..0000000
--- a/benchmark/benchmark.index_of.length.js
+++ /dev/null
@@ -1,95 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var v;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = (i%127) + 1;
- out = arr.indexOf( v );
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- }
- b.toc();
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':indexOf:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.join.js b/benchmark/benchmark.join.js
deleted file mode 100644
index b5e00c6..0000000
--- a/benchmark/benchmark.join.js
+++ /dev/null
@@ -1,51 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':join', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i % 127;
- out = arr.join();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- }
- b.toc();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.join.length.js b/benchmark/benchmark.join.length.js
deleted file mode 100644
index 2fdc4ff..0000000
--- a/benchmark/benchmark.join.length.js
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i % 127;
- out = arr.join();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- }
- b.toc();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':join:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.js b/benchmark/benchmark.js
deleted file mode 100644
index c7ed624..0000000
--- a/benchmark/benchmark.js
+++ /dev/null
@@ -1,47 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var ctor = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg, function benchmark( b ) {
- var arr;
- var i;
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = new ctor( 0 );
- if ( arr.length !== 0 ) {
- b.fail( 'should have length 0' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.keys.js b/benchmark/benchmark.keys.js
deleted file mode 100644
index 707e514..0000000
--- a/benchmark/benchmark.keys.js
+++ /dev/null
@@ -1,50 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':keys', function benchmark( b ) {
- var iter;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- iter = arr.keys();
- if ( typeof iter !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( typeof iter !== 'object' || typeof iter.next !== 'function' ) {
- b.fail( 'should return an iterator protocol-compliant object' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.last_index_of.js b/benchmark/benchmark.last_index_of.js
deleted file mode 100644
index 32d4359..0000000
--- a/benchmark/benchmark.last_index_of.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':lastIndexOf', function benchmark( b ) {
- var out;
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- // Benchmark worst case scenario...
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = (i%127) + 1;
- out = arr.lastIndexOf( v );
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- }
- b.toc();
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.last_index_of.length.js b/benchmark/benchmark.last_index_of.length.js
deleted file mode 100644
index e5af784..0000000
--- a/benchmark/benchmark.last_index_of.length.js
+++ /dev/null
@@ -1,95 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var v;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = (i%127) + 1;
- out = arr.lastIndexOf( v );
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- }
- b.toc();
- if ( out !== -1 ) {
- b.fail( 'should return -1' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':lastIndexOf:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.length.js b/benchmark/benchmark.length.js
deleted file mode 100644
index 71d0e49..0000000
--- a/benchmark/benchmark.length.js
+++ /dev/null
@@ -1,93 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var ctor = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var arr;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = new ctor( len );
- if ( arr.length !== len ) {
- b.fail( 'unexpected length' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.map.js b/benchmark/benchmark.map.js
deleted file mode 100644
index daf47b0..0000000
--- a/benchmark/benchmark.map.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':map', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.map( fcn );
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function fcn( v ) {
- return v + 1;
- }
-});
-
-bench( pkg+'::this_context:map', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.map( fcn, {} );
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function fcn( v ) {
- return v + 1;
- }
-});
diff --git a/benchmark/benchmark.map.length.js b/benchmark/benchmark.map.length.js
deleted file mode 100644
index 013a632..0000000
--- a/benchmark/benchmark.map.length.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Maps an array element to a new value.
-*
-* @private
-* @param {*} value - array element
-* @returns {*} new value
-*/
-function fcn( value ) {
- return value + 1;
-}
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.map( fcn );
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 5; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':map:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.of.js b/benchmark/benchmark.of.js
deleted file mode 100644
index 33ba645..0000000
--- a/benchmark/benchmark.of.js
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':of', function benchmark( b ) {
- var arr;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr = Int32Array.of( i, 2 );
- if ( arr.length !== 2 ) {
- b.fail( 'should have length 2' );
- }
- }
- b.toc();
- if ( !isInt32Array( arr ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.properties.js b/benchmark/benchmark.properties.js
deleted file mode 100644
index 02e1958..0000000
--- a/benchmark/benchmark.properties.js
+++ /dev/null
@@ -1,145 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isArrayBuffer = require( '@stdlib/assert-is-arraybuffer' );
-var isNonNegativeInteger = require( '@stdlib/assert-is-nonnegative-integer' ).isPrimitive;
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+'::get:buffer', function benchmark( b ) {
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- // Note: the following may be optimized away due to loop invariant code motion and/or other compiler optimizations, rendering this benchmark meaningless...
- v = arr.buffer;
- if ( typeof v !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isArrayBuffer( v ) ) {
- b.fail( 'should return an ArrayBuffer' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
-
-bench( pkg+'::get:byteLength', function benchmark( b ) {
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- // Note: the following may be optimized away due to loop invariant code motion and/or other compiler optimizations, rendering this benchmark meaningless...
- v = arr.byteLength;
- if ( v !== v ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( !isNonNegativeInteger( v ) ) {
- b.fail( 'should return a nonnegative integer' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
-
-bench( pkg+'::get:byteOffset', function benchmark( b ) {
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- // Note: the following may be optimized away due to loop invariant code motion and/or other compiler optimizations, rendering this benchmark meaningless...
- v = arr.byteOffset;
- if ( v !== v ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( !isNonNegativeInteger( v ) ) {
- b.fail( 'should return a nonnegative integer' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
-
-bench( pkg+'::get:BYTES_PER_ELEMENT', function benchmark( b ) {
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- // Note: the following may be optimized away due to loop invariant code motion and/or other compiler optimizations, rendering this benchmark meaningless...
- v = arr.BYTES_PER_ELEMENT;
- if ( v !== v ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( !isNonNegativeInteger( v ) ) {
- b.fail( 'should return a nonnegative integer' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
-
-bench( pkg+'::get:length', function benchmark( b ) {
- var arr;
- var v;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- // Note: the following may be optimized away due to loop invariant code motion and/or other compiler optimizations, rendering this benchmark meaningless...
- v = arr.length;
- if ( v !== v ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( !isNonNegativeInteger( v ) ) {
- b.fail( 'should return a nonnegative integer' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.reduce.js b/benchmark/benchmark.reduce.js
deleted file mode 100644
index 087ba99..0000000
--- a/benchmark/benchmark.reduce.js
+++ /dev/null
@@ -1,80 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':reduce', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.reduce( fcn );
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function fcn( acc, v ) {
- return acc + v + 1;
- }
-});
-
-bench( pkg+'::initial_value:reduce', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.reduce( fcn, 3 );
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function fcn( v ) {
- return v + 1;
- }
-});
diff --git a/benchmark/benchmark.reduce.length.js b/benchmark/benchmark.reduce.length.js
deleted file mode 100644
index 60ec12a..0000000
--- a/benchmark/benchmark.reduce.length.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Updates an accumulated value.
-*
-* @private
-* @param {*} acc - accumulated value
-* @param {*} value - array element
-* @returns {*} accumulated value
-*/
-function fcn( acc, value ) {
- return acc + value + 1;
-}
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.reduce( fcn );
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':reduce:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.reduce_right.js b/benchmark/benchmark.reduce_right.js
deleted file mode 100644
index b50c81e..0000000
--- a/benchmark/benchmark.reduce_right.js
+++ /dev/null
@@ -1,80 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':reduceRight', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.reduceRight( fcn );
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function fcn( acc, v ) {
- return acc + v + 1;
- }
-});
-
-bench( pkg+'::initial_value:reduceRight', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.reduceRight( fcn, 3 );
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function fcn( v ) {
- return v + 1;
- }
-});
diff --git a/benchmark/benchmark.reduce_right.length.js b/benchmark/benchmark.reduce_right.length.js
deleted file mode 100644
index 67ec72f..0000000
--- a/benchmark/benchmark.reduce_right.length.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Updates an accumulated value.
-*
-* @private
-* @param {*} acc - accumulated value
-* @param {*} value - array element
-* @returns {*} accumulated value
-*/
-function fcn( acc, value ) {
- return acc + value + 1;
-}
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.reduceRight( fcn );
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- }
- b.toc();
- if ( out !== out ) {
- b.fail( 'should not return NaN' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':reduceRight:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.reverse.js b/benchmark/benchmark.reverse.js
deleted file mode 100644
index bef28c5..0000000
--- a/benchmark/benchmark.reverse.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':reverse', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i;
- out = arr.reverse();
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.reverse.length.js b/benchmark/benchmark.reverse.length.js
deleted file mode 100644
index 5589b68..0000000
--- a/benchmark/benchmark.reverse.length.js
+++ /dev/null
@@ -1,95 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i;
- out = arr.reverse();
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':reverse:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.set.js b/benchmark/benchmark.set.js
deleted file mode 100644
index 17c6825..0000000
--- a/benchmark/benchmark.set.js
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+'::array:set', function benchmark( b ) {
- var values;
- var buf;
- var arr;
- var N;
- var v;
- var i;
-
- values = [];
- for ( i = 0; i < 10; i++ ) {
- values.push( i );
- }
- N = values.length;
-
- arr = new Int32Array( 2 );
- buf = [ 0 ];
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- buf[ 0 ] = values[ i%N ];
- v = arr.set( buf );
- if ( typeof v !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- }
- b.toc();
- if ( typeof v !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
-
-bench( pkg+'::typed_array:set', function benchmark( b ) {
- var values;
- var buf;
- var arr;
- var N;
- var v;
- var i;
-
- values = new Int32Array( 20 );
- N = values.length;
- for ( i = 0; i < N; i++ ) {
- values[ i ] = i;
- }
-
- arr = new Int32Array( 2 );
- buf = new Int32Array( 1 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- buf[ 0 ] = values[ i%N ];
- v = arr.set( buf );
- if ( typeof v !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- }
- b.toc();
- if ( typeof v !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.set.length.js b/benchmark/benchmark.set.length.js
deleted file mode 100644
index 1b64f64..0000000
--- a/benchmark/benchmark.set.length.js
+++ /dev/null
@@ -1,114 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var randi = require( '@stdlib/random-base-randi' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var values;
- var arr1;
- var arr2;
- var arr;
- var N;
- var i;
-
- arr1 = [];
- arr2 = [];
- for ( i = 0; i < len; i++ ) {
- arr1.push( randi() );
- arr2.push( randi() );
- }
- arr = new Int32Array( len );
-
- values = [
- arr1,
- arr2
- ];
- N = values.length;
-
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var v;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- v = arr.set( values[ i%N ] );
- if ( typeof v !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- }
- b.toc();
- if ( typeof v !== 'undefined' ) {
- b.fail( 'should return undefined' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':set:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.slice.js b/benchmark/benchmark.slice.js
deleted file mode 100644
index c478044..0000000
--- a/benchmark/benchmark.slice.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':slice', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i;
- out = arr.slice();
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.slice.length.js b/benchmark/benchmark.slice.length.js
deleted file mode 100644
index 94228ab..0000000
--- a/benchmark/benchmark.slice.length.js
+++ /dev/null
@@ -1,95 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i;
- out = arr.slice();
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':slice:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.some.js b/benchmark/benchmark.some.js
deleted file mode 100644
index b36780d..0000000
--- a/benchmark/benchmark.some.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':some', function benchmark( b ) {
- var bool;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- bool = arr.some( predicate );
- if ( typeof bool !== 'boolean' ) {
- b.fail( 'should return a boolean' );
- }
- }
- b.toc();
- if ( !isBoolean( bool ) ) {
- b.fail( 'should return a boolean' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v > 0;
- }
-});
-
-bench( pkg+'::this_context:some', function benchmark( b ) {
- var bool;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- bool = arr.some( predicate, {} );
- if ( typeof bool !== 'boolean' ) {
- b.fail( 'should return a boolean' );
- }
- }
- b.toc();
- if ( !isBoolean( bool ) ) {
- b.fail( 'should return a boolean' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-
- function predicate( v ) {
- return v > 0;
- }
-});
diff --git a/benchmark/benchmark.some.length.js b/benchmark/benchmark.some.length.js
deleted file mode 100644
index 78a4f55..0000000
--- a/benchmark/benchmark.some.length.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Returns a boolean indicating whether an array element passes a test.
-*
-* @private
-* @param {*} value - value to test
-* @returns {boolean} boolean indicating whether an array element passes a test
-*/
-function predicate( value ) {
- return value > 0;
-}
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var bool;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- bool = arr.some( predicate );
- if ( typeof bool !== 'boolean' ) {
- b.fail( 'should return a boolean' );
- }
- }
- b.toc();
- if ( !isBoolean( bool ) ) {
- b.fail( 'should return a boolean' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':some:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.sort.js b/benchmark/benchmark.sort.js
deleted file mode 100644
index 51504f0..0000000
--- a/benchmark/benchmark.sort.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var randi = require( '@stdlib/random-base-randi' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':sort', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( [ randi(), randi() ] );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = randi();
- out = arr.sort();
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.sort.length.js b/benchmark/benchmark.sort.length.js
deleted file mode 100644
index 4473913..0000000
--- a/benchmark/benchmark.sort.length.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var randi = require( '@stdlib/random-base-randi' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var data;
- var arr;
- var i;
-
- data = [];
- for ( i = 0; i < len; i++ ) {
- data.push( randi() );
- }
- arr = new Int32Array( data );
-
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ i%len ] = randi();
- out = arr.sort();
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 5; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':sort:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.subarray.js b/benchmark/benchmark.subarray.js
deleted file mode 100644
index 713d573..0000000
--- a/benchmark/benchmark.subarray.js
+++ /dev/null
@@ -1,51 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':subarray', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.subarray();
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.subarray.length.js b/benchmark/benchmark.subarray.length.js
deleted file mode 100644
index 2bf63ac..0000000
--- a/benchmark/benchmark.subarray.length.js
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var isInt32Array = require( '@stdlib/assert-is-int32array' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- out = arr.subarray();
- if ( typeof out !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( !isInt32Array( out ) ) {
- b.fail( 'should return an Int32Array' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 6; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':subarray:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.to_locale_string.js b/benchmark/benchmark.to_locale_string.js
deleted file mode 100644
index f25625e..0000000
--- a/benchmark/benchmark.to_locale_string.js
+++ /dev/null
@@ -1,51 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':toLocaleString', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i;
- out = arr.toLocaleString();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- }
- b.toc();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.to_locale_string.length.js b/benchmark/benchmark.to_locale_string.length.js
deleted file mode 100644
index b4113fe..0000000
--- a/benchmark/benchmark.to_locale_string.length.js
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i;
- out = arr.toLocaleString();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- }
- b.toc();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 5; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':toLocaleString:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.to_string.js b/benchmark/benchmark.to_string.js
deleted file mode 100644
index 1cfb712..0000000
--- a/benchmark/benchmark.to_string.js
+++ /dev/null
@@ -1,51 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':toString', function benchmark( b ) {
- var out;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i;
- out = arr.toString();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- }
- b.toc();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/benchmark/benchmark.to_string.length.js b/benchmark/benchmark.to_string.length.js
deleted file mode 100644
index 7f0c95d..0000000
--- a/benchmark/benchmark.to_string.length.js
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pow = require( '@stdlib/math-base-special-pow' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// FUNCTIONS //
-
-/**
-* Creates a benchmark function.
-*
-* @private
-* @param {PositiveInteger} len - array length
-* @returns {Function} benchmark function
-*/
-function createBenchmark( len ) {
- var arr = new Int32Array( len );
- return benchmark;
-
- /**
- * Benchmark function.
- *
- * @private
- * @param {Benchmark} b - benchmark instance
- */
- function benchmark( b ) {
- var out;
- var i;
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- arr[ 0 ] = i;
- out = arr.toString();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- }
- b.toc();
- if ( typeof out !== 'string' ) {
- b.fail( 'should return a string' );
- }
- b.pass( 'benchmark finished' );
- b.end();
- }
-}
-
-
-// MAIN //
-
-/**
-* Main execution sequence.
-*
-* @private
-*/
-function main() {
- var len;
- var min;
- var max;
- var f;
- var i;
-
- min = 1; // 10^min
- max = 5; // 10^max
-
- for ( i = min; i <= max; i++ ) {
- len = pow( 10, i );
- f = createBenchmark( len );
- bench( pkg+':toString:len='+len, f );
- }
-}
-
-main();
diff --git a/benchmark/benchmark.values.js b/benchmark/benchmark.values.js
deleted file mode 100644
index deb828d..0000000
--- a/benchmark/benchmark.values.js
+++ /dev/null
@@ -1,50 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var bench = require( '@stdlib/bench-harness' );
-var pkg = require( './../package.json' ).name;
-var Int32Array = require( './../lib' );
-
-
-// MAIN //
-
-bench( pkg+':values', function benchmark( b ) {
- var iter;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- b.tic();
- for ( i = 0; i < b.iterations; i++ ) {
- iter = arr.values();
- if ( typeof iter !== 'object' ) {
- b.fail( 'should return an object' );
- }
- }
- b.toc();
- if ( typeof iter !== 'object' || typeof iter.next !== 'function' ) {
- b.fail( 'should return an iterator protocol-compliant object' );
- }
- b.pass( 'benchmark finished' );
- b.end();
-});
diff --git a/branches.md b/branches.md
deleted file mode 100644
index 7794c51..0000000
--- a/branches.md
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-# Branches
-
-This repository has the following branches:
-
-- **main**: default branch generated from the [stdlib project][stdlib-url], where all development takes place.
-- **production**: [production build][production-url] of the package (e.g., reformatted error messages to reduce bundle sizes and thus the number of bytes transmitted over a network).
-- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers (see [README][esm-readme]).
-- **deno**: [Deno][deno-url] branch for use in Deno (see [README][deno-readme]).
-- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments (see [README][umd-readme]).
-
-The following diagram illustrates the relationships among the above branches:
-
-```mermaid
-graph TD;
-A[stdlib]-->|generate standalone package|B;
-B[main] -->|productionize| C[production];
-C -->|bundle| D[esm];
-C -->|bundle| E[deno];
-C -->|bundle| F[umd];
-
-%% click A href "https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/int32"
-%% click B href "https://github.com/stdlib-js/array-int32/tree/main"
-%% click C href "https://github.com/stdlib-js/array-int32/tree/production"
-%% click D href "https://github.com/stdlib-js/array-int32/tree/esm"
-%% click E href "https://github.com/stdlib-js/array-int32/tree/deno"
-%% click F href "https://github.com/stdlib-js/array-int32/tree/umd"
-```
-
-[stdlib-url]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/int32
-[production-url]: https://github.com/stdlib-js/array-int32/tree/production
-[deno-url]: https://github.com/stdlib-js/array-int32/tree/deno
-[deno-readme]: https://github.com/stdlib-js/array-int32/blob/deno/README.md
-[umd-url]: https://github.com/stdlib-js/array-int32/tree/umd
-[umd-readme]: https://github.com/stdlib-js/array-int32/blob/umd/README.md
-[esm-url]: https://github.com/stdlib-js/array-int32/tree/esm
-[esm-readme]: https://github.com/stdlib-js/array-int32/blob/esm/README.md
\ No newline at end of file
diff --git a/browser.js b/browser.js
new file mode 100644
index 0000000..7b3d78c
--- /dev/null
+++ b/browser.js
@@ -0,0 +1,3 @@
+// Copyright (c) 2025 The Stdlib Authors. License is Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0
+var t,n;t=this,n=function(){"use strict";var t,n="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),o=Object.prototype.toString,e=Object.prototype.hasOwnProperty,r="function"==typeof Symbol?Symbol:void 0,f="function"==typeof r?r.toStringTag:"",i=n&&"symbol"==typeof Symbol.toStringTag?function(t){var n,r,i,l,y;if(null==t)return o.call(t);r=t[f],y=f,n=null!=(l=t)&&e.call(l,y);try{t[f]=void 0}catch(n){return o.call(t)}return i=o.call(t),n?t[f]=r:delete t[f],i}:function(t){return o.call(t)},l="function"==typeof Int32Array,y="function"==typeof Int32Array?Int32Array:null,c="function"==typeof Int32Array?Int32Array:void 0;return t=function(){var t,n,o;if("function"!=typeof y)return!1;try{n=new y([1,3.14,-3.14,2147483648]),o=n,t=(l&&o instanceof Int32Array||"[object Int32Array]"===i(o))&&1===n[0]&&3===n[1]&&-3===n[2]&&-2147483648===n[3]}catch(n){t=!1}return t}()?c:function(){throw new Error(function(){var t,n=arguments,o="https://stdlib.io/e/"+n[0]+"?";for(t=1;t\n*/\nfunction hasToStringTagSupport() {\n\treturn ( FLG && typeof Symbol.toStringTag === 'symbol' );\n}\n\n\n// EXPORTS //\n\nexport default hasToStringTagSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array-int32\n*\n* @example\n* import ctor from '@stdlib/array-int32';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasInt32ArraySupport from '@stdlib/assert-has-int32array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests for native `Symbol` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Symbol` support\n*\n* @example\n* var bool = hasSymbolSupport();\n* // returns \n*/\nfunction hasSymbolSupport() {\n\treturn (\n\t\ttypeof Symbol === 'function' &&\n\t\ttypeof Symbol( 'foo' ) === 'symbol'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default hasSymbolSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar toStr = Object.prototype.toString;\n\n\n// EXPORTS //\n\nexport default toStr;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// FUNCTIONS //\n\nvar has = Object.prototype.hasOwnProperty;\n\n\n// MAIN //\n\n/**\n* Tests if an object has a specified property.\n*\n* @param {*} value - value to test\n* @param {*} property - property to test\n* @returns {boolean} boolean indicating if an object has a specified property\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = hasOwnProp( beep, 'boop' );\n* // returns true\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = hasOwnProp( beep, 'bap' );\n* // returns false\n*/\nfunction hasOwnProp( value, property ) {\n\tif (\n\t\tvalue === void 0 ||\n\t\tvalue === null\n\t) {\n\t\treturn false;\n\t}\n\treturn has.call( value, property );\n}\n\n\n// EXPORTS //\n\nexport default hasOwnProp;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar Sym = ( typeof Symbol === 'function' ) ? Symbol : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default Sym;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Symbol from '@stdlib/symbol-ctor';\n\n\n// MAIN //\n\nvar toStrTag = ( typeof Symbol === 'function' ) ? Symbol.toStringTag : '';\n\n\n// EXPORTS //\n\nexport default toStrTag;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return a string value indicating a specification defined classification of an object.\n*\n* @module @stdlib/utils-native-class\n*\n* @example\n* import nativeClass from '@stdlib/utils-native-class';\n*\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* function Beep() {\n* return this;\n* }\n* str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\n\n// MODULES //\n\nimport hasToStringTag from '@stdlib/assert-has-tostringtag-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main;\nif ( hasToStringTag() ) {\n\tmain = polyfill;\n} else {\n\tmain = builtin;\n}\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert-has-own-property';\nimport toStringTag from './tostringtag.js';\nimport toStr from './tostring.js';\n\n\n// MAIN //\n\n/**\n* Returns a string value indicating a specification defined classification of an object in environments supporting `Symbol.toStringTag`.\n*\n* @param {*} v - input value\n* @returns {string} string value indicating a specification defined classification of the input value\n*\n* @example\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* @example\n* var str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* @example\n* function Beep() {\n* return this;\n* }\n* var str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\nfunction nativeClass( v ) {\n\tvar isOwn;\n\tvar tag;\n\tvar out;\n\n\tif ( v === null || v === void 0 ) {\n\t\treturn toStr.call( v );\n\t}\n\ttag = v[ toStringTag ];\n\tisOwn = hasOwnProp( v, toStringTag );\n\n\t// Attempt to override the `toStringTag` property. For built-ins having a `Symbol.toStringTag` property (e.g., `JSON`, `Math`, etc), the `Symbol.toStringTag` property is read-only (e.g., , so we need to wrap in a `try/catch`.\n\ttry {\n\t\tv[ toStringTag ] = void 0;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn toStr.call( v );\n\t}\n\tout = toStr.call( v );\n\n\tif ( isOwn ) {\n\t\tv[ toStringTag ] = tag;\n\t} else {\n\t\tdelete v[ toStringTag ];\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default nativeClass;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport toStr from './tostring.js';\n\n\n// MAIN //\n\n/**\n* Returns a string value indicating a specification defined classification (via the internal property `[[Class]]`) of an object.\n*\n* @param {*} v - input value\n* @returns {string} string value indicating a specification defined classification of the input value\n*\n* @example\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* @example\n* var str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* @example\n* function Beep() {\n* return this;\n* }\n* var str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\nfunction nativeClass( v ) {\n\treturn toStr.call( v );\n}\n\n\n// EXPORTS //\n\nexport default nativeClass;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils-native-class';\n\n\n// VARIABLES //\n\nvar hasInt32Array = ( typeof Int32Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is an Int32Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an Int32Array\n*\n* @example\n* var bool = isInt32Array( new Int32Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isInt32Array( [] );\n* // returns false\n*/\nfunction isInt32Array( value ) {\n\treturn (\n\t\t( hasInt32Array && value instanceof Int32Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Int32Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInt32Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Int32Array === 'function' ) ? Int32Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int32Array === 'function' ) ? Int32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInt32Array from '@stdlib/assert-is-int32array';\nimport INT32_MAX from '@stdlib/constants-int32-max';\nimport INT32_MIN from '@stdlib/constants-int32-min';\nimport GlobalInt32Array from './int32array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Int32Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Int32Array` support\n*\n* @example\n* var bool = hasInt32ArraySupport();\n* // returns \n*/\nfunction hasInt32ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalInt32Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalInt32Array( [ 1, 3.14, -3.14, INT32_MAX+1 ] );\n\t\tbool = (\n\t\t\tisInt32Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === -3 && // truncation\n\t\t\tarr[ 3 ] === INT32_MIN // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasInt32ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Minimum signed 32-bit integer.\n*\n* @module @stdlib/constants-int32-min\n* @type {integer32}\n*\n* @example\n* import INT32_MIN from '@stdlib/constants-int32-min';\n* // returns -2147483648\n*/\n\n\n// MAIN //\n\n/**\n* Minimum signed 32-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* -(2^{31})\n* ```\n*\n* which corresponds to the two's complement bit sequence\n*\n* ```binarystring\n* 10000000000000000000000000000000\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -2147483648\n*/\nvar INT32_MIN = -2147483648|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT32_MIN;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\nimport format from '@stdlib/error-tools-fmtprodmsg';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( format('00z00') );\n}\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Formats an error message for production.\n*\n* @param {string} code - error code\n* @param {*} ...args - error message arguments\n* @returns {string} formatted error message\n*\n* @example\n* var msg = fmtprodmsg( '3', 'wrong_type' );\n* // returns 'https://stdlib.io/e/3?&arg[]=wrong_type'\n*/\nfunction fmtprodmsg() {\n\tvar a = arguments;\n\tvar c = a[ 0 ];\n\tvar u = 'https://stdlib.io/e/'+c+'?';\n\tvar i;\n\tfor ( i = 1; i < a.length; i++ ) {\n\t\tu += '&arg[]=' + encodeURIComponent( a[ i ] );\n\t}\n\treturn u;\n}\n\n\n// EXPORTS //\n\nexport default fmtprodmsg;\n"],"names":["ctor","FLG","Symbol","toStr","Object","prototype","toString","has","hasOwnProperty","Sym","toStrTag","toStringTag","nativeClass","v","isOwn","tag","out","value","property","call","err","hasInt32Array","Int32Array","main","bool","arr","GlobalInt32Array","INT32_MAX","hasInt32ArraySupport","builtin","Error","i","a","arguments","u","length","encodeURIComponent","format"],"mappings":";yCA2BA,ICcIA,EDdAC,EEMgB,mBAAXC,QACoB,iBAApBA,OAAQ,OCZbC,EAAQC,OAAOC,UAAUC,SCAzBC,EAAMH,OAAOC,UAAUG,eCAvBC,EAA0B,mBAAXP,OAA0BA,YAAS,ECKlDQ,EAA+B,mBAAXR,EAA0BA,EAAOS,YAAc,GCiCvEC,EPlBUX,GAAqC,iBAAvBC,OAAOS,YQQ/B,SAAsBE,GACrB,IAAIC,EACAC,EACAC,EJHgBC,EAAOC,EIK3B,GAAKL,QACJ,OAAOV,EAAMgB,KAAMN,GAEpBE,EAAMF,EAAGF,GJRkBO,EISJP,EAAvBG,EJPCG,OAFmBA,EISAJ,IJFbN,EAAIY,KAAMF,EAAOC,GIKxB,IACCL,EAAGF,QAAgB,CACnB,CAAC,MAAQS,GACT,OAAOjB,EAAMgB,KAAMN,EACnB,CAQD,OAPAG,EAAMb,EAAMgB,KAAMN,GAEbC,EACJD,EAAGF,GAAgBI,SAEZF,EAAGF,GAEJK,CACR,EC3BA,SAAsBH,GACrB,OAAOV,EAAMgB,KAAMN,EACpB,ECvBIQ,EAAwC,mBAAfC,WCLzBC,EAA+B,mBAAfD,WAA8BA,WAAa,KCA3DtB,EAA+B,mBAAfsB,WAA8BA,gBAAa,SXuB9DtB,EYND,WACC,IAAIwB,EACAC,EHKkBR,EGHtB,GAAiC,mBAArBS,EACX,OAAO,EAGR,IACCD,EAAM,IAAIC,EAAkB,CAAE,EAAG,MAAO,KAAMC,aHFzBV,EGINQ,EADfD,GHDEH,GAAiBJ,aAAiBK,YACX,wBAAzBV,EAAaK,KGEC,IAAbQ,EAAK,IACQ,IAAbA,EAAK,KACS,IAAdA,EAAK,KCEQ,aDDbA,EAAK,EAEN,CAAC,MAAQL,GACTI,GAAO,CACP,CACD,OAAOA,CACR,CZlBKI,GACGC,EcZR,WACC,MAAM,IAAIC,MCCX,WACC,IAGIC,EAHAC,EAAIC,UAEJC,EAAI,uBADAF,EAAG,GACsB,IAEjC,IAAMD,EAAI,EAAGA,EAAIC,EAAEG,OAAQJ,IAC1BG,GAAK,UAAYE,mBAAoBJ,EAAGD,IAEzC,OAAOG,CACR,CDVkBG,CAAO,SACzB,EdkBerC","x_google_ignoreList":[0,2,3,4,5,6,7,8,9,10,11,13,14,16]}
\ No newline at end of file
diff --git a/dist/index.d.ts b/dist/index.d.ts
deleted file mode 100644
index 0776473..0000000
--- a/dist/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-///
-import Int32Array from '../docs/types/index';
-export = Int32Array;
\ No newline at end of file
diff --git a/dist/index.js b/dist/index.js
deleted file mode 100644
index 1cc0937..0000000
--- a/dist/index.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";var e=function(u,r){return function(){return r||u((r={exports:{}}).exports,r),r.exports}};var o=e(function(y,i){"use strict";var a=typeof Int32Array=="function"?Int32Array:void 0;i.exports=a});var s=e(function(q,n){"use strict";function l(){throw new Error("not implemented")}n.exports=l});var p=require("@stdlib/assert-has-int32array-support"),c=o(),f=s(),t;p()?t=c:t=f;module.exports=t;
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-//# sourceMappingURL=index.js.map
diff --git a/dist/index.js.map b/dist/index.js.map
deleted file mode 100644
index 9b3d52e..0000000
--- a/dist/index.js.map
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "version": 3,
- "sources": ["../lib/main.js", "../lib/polyfill.js", "../lib/index.js"],
- "sourcesContent": ["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int32Array === 'function' ) ? Int32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nmodule.exports = ctor;\n", "/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nmodule.exports = polyfill;\n", "/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array-int32\n*\n* @example\n* var ctor = require( '@stdlib/array-int32' );\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nvar hasInt32ArraySupport = require( '@stdlib/assert-has-int32array-support' );\nvar builtin = require( './main.js' );\nvar polyfill = require( './polyfill.js' );\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nmodule.exports = ctor;\n"],
- "mappings": "uGAAA,IAAAA,EAAAC,EAAA,SAAAC,EAAAC,EAAA,cAsBA,IAAIC,EAAS,OAAO,YAAe,WAAe,WAAa,OAK/DD,EAAO,QAAUC,IC3BjB,IAAAC,EAAAC,EAAA,SAAAC,EAAAC,EAAA,cA6BA,SAASC,GAAW,CACnB,MAAM,IAAI,MAAO,iBAAkB,CACpC,CAKAD,EAAO,QAAUC,ICFjB,IAAIC,EAAuB,QAAS,uCAAwC,EACxEC,EAAU,IACVC,EAAW,IAKXC,EACCH,EAAqB,EACzBG,EAAOF,EAEPE,EAAOD,EAMR,OAAO,QAAUC",
- "names": ["require_main", "__commonJSMin", "exports", "module", "ctor", "require_polyfill", "__commonJSMin", "exports", "module", "polyfill", "hasInt32ArraySupport", "builtin", "polyfill", "ctor"]
-}
diff --git a/docs/repl.txt b/docs/repl.txt
deleted file mode 100644
index cbd8cce..0000000
--- a/docs/repl.txt
+++ /dev/null
@@ -1,953 +0,0 @@
-
-{{alias}}()
- A typed array constructor which returns a typed array representing an array
- of twos-complement 32-bit signed integers in the platform byte order.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var arr = new {{alias}}()
-
-
-
-{{alias}}( length )
- Returns a typed array having a specified length.
-
- Parameters
- ----------
- length: integer
- Typed array length.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var arr = new {{alias}}( 5 )
- [ 0, 0, 0, 0, 0 ]
-
-
-{{alias}}( typedarray )
- Creates a typed array from another typed array.
-
- Parameters
- ----------
- typedarray: TypedArray
- Typed array from which to generate another typed array.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var arr1 = new {{alias:@stdlib/array/int16}}( [ 5, 5, 5 ] );
- > var arr2 = new {{alias}}( arr1 )
- [ 5, 5, 5 ]
-
-
-{{alias}}( obj )
- Creates a typed array from an array-like object or iterable.
-
- Parameters
- ----------
- obj: Object
- Array-like object or iterable from which to generate a typed array.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var arr1 = [ 5.0, 5.0, 5.0 ];
- > var arr2 = new {{alias}}( arr1 )
- [ 5, 5, 5 ]
-
-
-{{alias}}( buffer[, byteOffset[, length]] )
- Returns a typed array view of an ArrayBuffer.
-
- Parameters
- ----------
- buffer: ArrayBuffer
- Underlying ArrayBuffer.
-
- byteOffset: integer (optional)
- Integer byte offset specifying the location of the first typed array
- element. Default: 0.
-
- length: integer (optional)
- View length. If not provided, the view spans from the byteOffset to
- the end of the underlying ArrayBuffer.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var buf = new {{alias:@stdlib/array/buffer}}( 16 );
- > var arr = new {{alias}}( buf, 0, 4 )
- [ 0, 0, 0, 0 ]
-
-
-{{alias}}.from( src[, map[, thisArg]] )
- Creates a new typed array from an array-like object or an iterable.
-
- A callback is provided the following arguments:
-
- - value: source value.
- - index: source index.
-
- Parameters
- ----------
- src: ArrayLike|Iterable
- Source of array elements.
-
- map: Function (optional)
- Callback to invoke for each source element.
-
- thisArg: Any (optional)
- Callback execution context.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > function mapFcn( v ) { return v * 2; };
- > var arr = {{alias}}.from( [ 1, 2 ], mapFcn )
- [ 2, 4 ]
-
-
-{{alias}}.of( element0[, element1[, ...elementN]] )
- Creates a new typed array from a variable number of arguments.
-
- Parameters
- ----------
- element0: number
- Array element.
-
- element1: number (optional)
- Array element.
-
- elementN: ...number (optional)
- Array elements.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var arr = {{alias}}.of( 1, 2 )
- [ 1, 2 ]
-
-
-{{alias}}.BYTES_PER_ELEMENT
- Number of bytes per view element.
-
- Examples
- --------
- > {{alias}}.BYTES_PER_ELEMENT
- 4
-
-
-{{alias}}.name
- Typed array constructor name.
-
- Examples
- --------
- > {{alias}}.name
- 'Int32Array'
-
-
-{{alias}}.prototype.buffer
- Read-only property which returns the ArrayBuffer referenced by the typed
- array.
-
- Examples
- --------
- > var arr = new {{alias}}( 5 );
- > arr.buffer
-
-
-
-{{alias}}.prototype.byteLength
- Read-only property which returns the length (in bytes) of the typed array.
-
- Examples
- --------
- > var arr = new {{alias}}( 5 );
- > arr.byteLength
- 20
-
-
-{{alias}}.prototype.byteOffset
- Read-only property which returns the offset (in bytes) of the typed array
- from the start of its ArrayBuffer.
-
- Examples
- --------
- > var arr = new {{alias}}( 5 );
- > arr.byteOffset
- 0
-
-
-{{alias}}.prototype.BYTES_PER_ELEMENT
- Number of bytes per view element.
-
- Examples
- --------
- > var arr = new {{alias}}( 5 );
- > arr.BYTES_PER_ELEMENT
- 4
-
-
-{{alias}}.prototype.length
- Read-only property which returns the number of view elements.
-
- Examples
- --------
- > var arr = new {{alias}}( 5 );
- > arr.length
- 5
-
-
-{{alias}}.prototype.copyWithin( target, start[, end] )
- Copies a sequence of elements within the array starting at `start` and
- ending at `end` (non-inclusive) to the position starting at `target`.
-
- Parameters
- ----------
- target: integer
- Target start index position.
-
- start: integer
- Source start index position.
-
- end: integer (optional)
- Source end index position. Default: out.length.
-
- Returns
- -------
- out: Int32Array
- Modified array.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3, 4, 5 ] );
- > arr.copyWithin( 3, 0, 2 );
- > arr[ 3 ]
- 1
- > arr[ 4 ]
- 2
-
-
-{{alias}}.prototype.entries()
- Returns an iterator for iterating over array key-value pairs.
-
- Returns
- -------
- iter: Iterator
- Iterator for iterating over array key-value pairs.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2 ] );
- > it = arr.entries();
- > it.next().value
- [ 0, 1 ]
- > it.next().value
- [ 1, 2 ]
- > it.next().done
- true
-
-
-{{alias}}.prototype.every( predicate[, thisArg] )
- Tests whether all array elements pass a test implemented by a predicate
- function.
-
- A predicate function is provided the following arguments:
-
- - value: array element.
- - index: array index.
- - arr: array on which the method is invoked.
-
- Parameters
- ----------
- predicate: Function
- Predicate function which tests array elements. If a predicate function
- returns a truthy value, an array element passes; otherwise, an array
- element fails.
-
- thisArg: Any (optional)
- Callback execution context.
-
- Returns
- -------
- bool: boolean
- Boolean indicating whether all array elements pass.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2 ] );
- > function predicate( v ) { return ( v <= 1 ); };
- > arr.every( predicate )
- false
-
-
-{{alias}}.prototype.fill( value[, start[, end]] )
- Fills an array from a start index to an end index (non-inclusive) with a
- provided value.
-
- Parameters
- ----------
- value: number
- Fill value.
-
- start: integer (optional)
- Start index. If less than zero, the start index is resolved relative to
- the last array element. Default: 0.
-
- end: integer (optional)
- End index (non-inclusive). If less than zero, the end index is resolved
- relative to the last array element. Default: out.length.
-
- Returns
- -------
- out: Int32Array
- Modified array.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2 ] );
- > arr.fill( 3 );
- > arr[ 0 ]
- 3
- > arr[ 1 ]
- 3
-
-
-{{alias}}.prototype.filter( predicate[, thisArg] )
- Creates a new array which includes those elements for which a predicate
- function returns a truthy value.
-
- A predicate function is provided the following arguments:
-
- - value: array element.
- - index: array index.
- - arr: array on which the method is invoked.
-
- The returned array has the same data type as the host array.
-
- If a predicate function does not return a truthy value for any array
- element, the method returns `null`.
-
- Parameters
- ----------
- predicate: Function
- Predicate function which filters array elements. If a predicate function
- returns a truthy value, an array element is included in the output
- array; otherwise, an array element is not included in the output array.
-
- thisArg: Any (optional)
- Callback execution context.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var arr1 = new {{alias}}( [ 1, 2, 3 ] );
- > function predicate( v ) { return ( v > 1 ); };
- > var arr2 = arr1.filter( predicate );
- > arr2.length
- 2
-
-
-{{alias}}.prototype.find( predicate[, thisArg] )
- Returns the first array element for which a provided predicate function
- returns a truthy value.
-
- A predicate function is provided the following arguments:
-
- - value: array element.
- - index: array index.
- - arr: array on which the method is invoked.
-
- If a predicate function never returns a truthy value, the method returns
- `undefined`.
-
- Parameters
- ----------
- predicate: Function
- Predicate function which tests array elements.
-
- thisArg: Any (optional)
- Callback execution context.
-
- Returns
- -------
- value: number|undefined
- Array element.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > function predicate( v ) { return ( v > 2 ); };
- > var v = arr.find( predicate )
- 3
-
-
-{{alias}}.prototype.findIndex( predicate[, thisArg] )
- Returns the index of the first array element for which a provided predicate
- function returns a truthy value.
-
- A predicate function is provided the following arguments:
-
- - value: array element.
- - index: array index.
- - arr: array on which the method is invoked.
-
- If a predicate function never returns a truthy value, the method returns
- `-1`.
-
- Parameters
- ----------
- predicate: Function
- Predicate function which tests array elements.
-
- thisArg: Any (optional)
- Callback execution context.
-
- Returns
- -------
- idx: integer
- Array index.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > function predicate( v ) { return ( v > 2 ); };
- > var idx = arr.findIndex( predicate )
- 2
-
-
-{{alias}}.prototype.forEach( fcn[, thisArg] )
- Invokes a callback for each array element.
-
- A provided function is provided the following arguments:
-
- - value: array element.
- - index: array index.
- - arr: array on which the method is invoked.
-
- Parameters
- ----------
- fcn: Function
- Function to invoke for each array element.
-
- thisArg: Any (optional)
- Callback execution context.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 3, 2, 1 ] );
- > var str = ' ';
- > function fcn( v, i ) { str += i + ':' + v + ' '; };
- > arr.forEach( fcn );
- > str
- ' 0:3 1:2 2:1 '
-
-
-{{alias}}.prototype.includes( searchElement[, fromIndex] )
- Returns a boolean indicating whether an array includes a search element.
-
- Parameters
- ----------
- searchElement: number
- Search element.
-
- fromIndex: integer (optional)
- Array index from which to begin searching. If provided a negative value,
- the method resolves the start index relative to the last array element.
- Default: 0.
-
- Returns
- -------
- bool: boolean
- Boolean indicating whether an array includes a search element.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > var bool = arr.includes( 4 )
- false
- > bool = arr.includes( 3 )
- true
-
-
-{{alias}}.prototype.indexOf( searchElement[, fromIndex] )
- Returns the index of the first array element strictly equal to a search
- element.
-
- If unable to locate a search element, the method returns `-1`.
-
- Parameters
- ----------
- searchElement: number
- Search element.
-
- fromIndex: integer (optional)
- Array index from which to begin searching. If provided a negative value,
- the method resolves the start index relative to the last array element.
- Default: 0.
-
- Returns
- -------
- idx: integer
- Array index.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > var idx = arr.indexOf( 4 )
- -1
- > idx = arr.indexOf( 3 )
- 2
-
-
-{{alias}}.prototype.join( [separator] )
- Serializes an array by joining all array elements as a string.
-
- Parameters
- ----------
- separator: string (optional)
- String delineating array elements. Default: ','.
-
- Returns
- -------
- str: string
- Array serialized as a string.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > arr.join( '|' )
- '1|2|3'
-
-
-{{alias}}.prototype.keys()
- Returns an iterator for iterating over array keys.
-
- Returns
- -------
- iter: Iterator
- Iterator for iterating over array keys.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2 ] );
- > it = arr.keys();
- > it.next().value
- 0
- > it.next().value
- 1
- > it.next().done
- true
-
-
-{{alias}}.prototype.lastIndexOf( searchElement[, fromIndex] )
- Returns the index of the last array element strictly equal to a search
- element.
-
- The method iterates from the last array element to the first array element.
-
- If unable to locate a search element, the method returns `-1`.
-
- Parameters
- ----------
- searchElement: number
- Search element.
-
- fromIndex: integer (optional)
- Array index from which to begin searching. If provided a negative value,
- the method resolves the start index relative to the last array element.
- Default: -1.
-
- Returns
- -------
- idx: integer
- Array index.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 0, 2, 0, 1 ] );
- > var idx = arr.lastIndexOf( 3 )
- -1
- > idx = arr.lastIndexOf( 0 )
- 3
-
-
-{{alias}}.prototype.map( fcn[, thisArg] )
- Maps each array element to an element in a new typed array.
-
- A provided function is provided the following arguments:
-
- - value: array element.
- - index: array index.
- - arr: array on which the method is invoked.
-
- The returned array has the same data type as the host array.
-
- Parameters
- ----------
- fcn: Function
- Function which maps array elements to elements in the new array.
-
- thisArg: Any (optional)
- Callback execution context.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var arr1 = new {{alias}}( [ 1, 2, 3 ] );
- > function fcn( v ) { return v * 2; };
- > var arr2 = arr1.map( fcn )
- [ 2, 4, 6 ]
-
-
-{{alias}}.prototype.reduce( fcn[, initialValue] )
- Applies a function against an accumulator and each element in an array and
- returns the accumulated result.
-
- The provided function is provided the following arguments:
-
- - acc: accumulated result.
- - value: current array element.
- - index: index of the current array element.
- - arr: array on which the method is invoked.
-
- If provided an initial value, the method invokes a provided function with
- the initial value as the first argument and the first array element as the
- second argument.
-
- If not provided an initial value, the method invokes a provided function
- with the first array element as the first argument and the second array
- element as the second argument.
-
- Parameters
- ----------
- fcn: Function
- Function to apply.
-
- initialValue: Any (optional)
- Initial accumulation value.
-
- Returns
- -------
- out: Any
- Accumulated result.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > function fcn( acc, v ) { return acc + (v*v); };
- > var v = arr.reduce( fcn, 0 )
- 14
-
-
-{{alias}}.prototype.reduceRight( fcn[, initialValue] )
- Applies a function against an accumulator and each element in an array and
- returns the accumulated result, iterating from right to left.
-
- The provided function is provided the following arguments:
-
- - acc: accumulated result.
- - value: current array element.
- - index: index of the current array element.
- - arr: array on which the method is invoked.
-
- If provided an initial value, the method invokes a provided function with
- the initial value as the first argument and the last array element as the
- second argument.
-
- If not provided an initial value, the method invokes a provided function
- with the last array element as the first argument and the second-to-last
- array element as the second argument.
-
- Parameters
- ----------
- fcn: Function
- Function to apply.
-
- initialValue: Any (optional)
- Initial accumulation value.
-
- Returns
- -------
- out: Any
- Accumulated result.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > function fcn( acc, v ) { return acc + (v*v); };
- > var v = arr.reduceRight( fcn, 0 )
- 14
-
-
-{{alias}}.prototype.reverse()
- Reverses an array *in-place*.
-
- This method mutates the array on which the method is invoked.
-
- Returns
- -------
- out: Int32Array
- Modified array.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] )
-
- > arr.reverse()
- [ 3, 2, 1 ]
-
-
-{{alias}}.prototype.set( arr[, offset] )
- Sets array elements.
-
- Parameters
- ----------
- arr: ArrayLike
- Source array containing array values to set.
-
- offset: integer (optional)
- Array index at which to start writing values. Default: 0.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > arr.set( [ 4, 4 ], 1 );
- > arr[ 1 ]
- 4
- > arr[ 2 ]
- 4
-
-
-{{alias}}.prototype.slice( [begin[, end]] )
- Copies array elements to a new array with the same underlying data type as
- the host array.
-
- If the method is unable to resolve indices to a non-empty array subsequence,
- the method returns `null`.
-
- Parameters
- ----------
- begin: integer (optional)
- Start element index (inclusive). If less than zero, the start index is
- resolved relative to the last array element. Default: 0.
-
- end: integer (optional)
- End element index (exclusive). If less than zero, the end index is
- resolved relative to the last array element. Default: arr.length.
-
- Returns
- -------
- out: Int32Array
- A typed array.
-
- Examples
- --------
- > var arr1 = new {{alias}}( [ 1, 2, 3 ] );
- > var arr2 = arr1.slice( 1 );
- > arr2.length
- 2
- > arr2[ 0 ]
- 2
- > arr2[ 1 ]
- 3
-
-
-{{alias}}.prototype.some( predicate[, thisArg] )
- Tests whether at least one array element passes a test implemented by a
- predicate function.
-
- A predicate function is provided the following arguments:
-
- - value: array element.
- - index: array index.
- - arr: array on which the method is invoked.
-
- Parameters
- ----------
- predicate: Function
- Predicate function which tests array elements. If a predicate function
- returns a truthy value, a array element passes; otherwise, an array
- element fails.
-
- thisArg: Any (optional)
- Callback execution context.
-
- Returns
- -------
- bool: boolean
- Boolean indicating whether at least one array element passes.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2 ] );
- > function predicate( v ) { return ( v > 1 ); };
- > arr.some( predicate )
- true
-
-
-{{alias}}.prototype.sort( [compareFunction] )
- Sorts an array *in-place*.
-
- The comparison function is provided two array elements per invocation: `a`
- and `b`.
-
- The comparison function return value determines the sort order as follows:
-
- - If the comparison function returns a value less than zero, then the method
- sorts `a` to an index lower than `b` (i.e., `a` should come *before* `b`).
-
- - If the comparison function returns a value greater than zero, then the
- method sorts `a` to an index higher than `b` (i.e., `b` should come *before*
- `a`).
-
- - If the comparison function returns zero, then the relative order of `a`
- and `b` should remain unchanged.
-
- This method mutates the array on which the method is invoked.
-
- Parameters
- ----------
- compareFunction: Function (optional)
- Function which specifies the sort order. The default sort order is
- ascending order.
-
- Returns
- -------
- out: Int32Array
- Modified array.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 0, 2, 1 ] );
- > arr.sort()
- [ 0, 1, 1, 2, 2 ]
-
-
-{{alias}}.prototype.subarray( [begin[, end]] )
- Creates a new typed array over the same underlying ArrayBuffer and with the
- same underlying data type as the host array.
-
- If the method is unable to resolve indices to a non-empty array subsequence,
- the method returns an empty typed array.
-
- Parameters
- ----------
- begin: integer (optional)
- Start element index (inclusive). If less than zero, the start index is
- resolved relative to the last array element. Default: 0.
-
- end: integer (optional)
- End element index (exclusive). If less than zero, the end index is
- resolved relative to the last array element. Default: arr.length.
-
- Returns
- -------
- out: Int32Array
- A new typed array view.
-
- Examples
- --------
- > var arr1 = new {{alias}}( [ 1, 2, 3, 4, 5 ] );
- > var arr2 = arr1.subarray( 2 )
- [ 3, 4, 5 ]
-
-
-{{alias}}.prototype.toLocaleString( [locales[, options]] )
- Serializes an array as a locale-specific string.
-
- Parameters
- ----------
- locales: string|Array (optional)
- A BCP 47 language tag, or an array of such tags.
-
- options: Object (optional)
- Options.
-
- Returns
- -------
- str: string
- A typed array string representation.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > arr.toLocaleString()
- '1,2,3'
-
-
-{{alias}}.prototype.toString()
- Serializes an array as a string.
-
- Returns
- -------
- str: string
- A typed array string representation.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2, 3 ] );
- > arr.toString()
- '1,2,3'
-
-
-{{alias}}.prototype.values()
- Returns an iterator for iterating over array elements.
-
- Returns
- -------
- iter: Iterator
- Iterator for iterating over array elements.
-
- Examples
- --------
- > var arr = new {{alias}}( [ 1, 2 ] );
- > it = arr.values();
- > it.next().value
- 1
- > it.next().value
- 2
- > it.next().done
- true
-
-
- See Also
- --------
-
diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts
deleted file mode 100644
index a32b46f..0000000
--- a/docs/types/index.d.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-* @license Apache-2.0
-*
-* Copyright (c) 2021 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-// TypeScript Version: 4.1
-
-// EXPORTS //
-
-/**
-* Typed array constructor which returns a typed array representing an array of twos-complement 32-bit signed integers in the platform byte order.
-*/
-export = Int32Array;
diff --git a/docs/types/test.ts b/docs/types/test.ts
deleted file mode 100644
index a9b2ec5..0000000
--- a/docs/types/test.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
-* @license Apache-2.0
-*
-* Copyright (c) 2021 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-/* eslint-disable @typescript-eslint/no-unused-expressions */
-
-import Int32Array = require( './index' );
-
-
-// TESTS //
-
-// The function returns a typed array instance...
-{
- new Int32Array( 10 ); // $ExpectType Int32Array
- new Int32Array( [ 2, 5, 5, 7 ] ); // $ExpectType Int32Array
-}
-
-// The constructor function has to be invoked with `new`...
-{
- Int32Array( 10 ); // $ExpectError
- Int32Array( [ 2, 5, 5, 7 ] ); // $ExpectError
-}
diff --git a/examples/index.js b/examples/index.js
deleted file mode 100644
index 3dfeb21..0000000
--- a/examples/index.js
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-var randu = require( '@stdlib/random-base-randu' );
-var round = require( '@stdlib/math-base-special-round' );
-var ctor = require( './../lib' );
-
-var arr;
-var i;
-
-arr = new ctor( 10 );
-for ( i = 0; i < arr.length; i++ ) {
- arr[ i ] = round( randu()*100.0 );
-}
-console.log( arr );
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..ed7359d
--- /dev/null
+++ b/index.js
@@ -0,0 +1,3 @@
+// Copyright (c) 2025 The Stdlib Authors. License is Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0
+var t,n;t=this,n=function(){"use strict";var t,n="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),o=Object.prototype.toString,e=Object.prototype.hasOwnProperty,r="function"==typeof Symbol?Symbol:void 0,f="function"==typeof r?r.toStringTag:"",i=n&&"symbol"==typeof Symbol.toStringTag?function(t){var n,r,i,l,y;if(null==t)return o.call(t);r=t[f],y=f,n=null!=(l=t)&&e.call(l,y);try{t[f]=void 0}catch(n){return o.call(t)}return i=o.call(t),n?t[f]=r:delete t[f],i}:function(t){return o.call(t)},l="function"==typeof Int32Array,y="function"==typeof Int32Array?Int32Array:null,c="function"==typeof Int32Array?Int32Array:void 0;return t=function(){var t,n,o;if("function"!=typeof y)return!1;try{n=new y([1,3.14,-3.14,2147483648]),o=n,t=(l&&o instanceof Int32Array||"[object Int32Array]"===i(o))&&1===n[0]&&3===n[1]&&-3===n[2]&&-2147483648===n[3]}catch(n){t=!1}return t}()?c:function(){throw new Error(function(){var t,n=arguments,o="https://stdlib.io/e/"+n[0]+"?";for(t=1;t\n*/\nfunction hasToStringTagSupport() {\n\treturn ( FLG && typeof Symbol.toStringTag === 'symbol' );\n}\n\n\n// EXPORTS //\n\nexport default hasToStringTagSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array-int32\n*\n* @example\n* import ctor from '@stdlib/array-int32';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasInt32ArraySupport from '@stdlib/assert-has-int32array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests for native `Symbol` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Symbol` support\n*\n* @example\n* var bool = hasSymbolSupport();\n* // returns \n*/\nfunction hasSymbolSupport() {\n\treturn (\n\t\ttypeof Symbol === 'function' &&\n\t\ttypeof Symbol( 'foo' ) === 'symbol'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default hasSymbolSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar toStr = Object.prototype.toString;\n\n\n// EXPORTS //\n\nexport default toStr;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// FUNCTIONS //\n\nvar has = Object.prototype.hasOwnProperty;\n\n\n// MAIN //\n\n/**\n* Tests if an object has a specified property.\n*\n* @param {*} value - value to test\n* @param {*} property - property to test\n* @returns {boolean} boolean indicating if an object has a specified property\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = hasOwnProp( beep, 'boop' );\n* // returns true\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = hasOwnProp( beep, 'bap' );\n* // returns false\n*/\nfunction hasOwnProp( value, property ) {\n\tif (\n\t\tvalue === void 0 ||\n\t\tvalue === null\n\t) {\n\t\treturn false;\n\t}\n\treturn has.call( value, property );\n}\n\n\n// EXPORTS //\n\nexport default hasOwnProp;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar Sym = ( typeof Symbol === 'function' ) ? Symbol : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default Sym;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Symbol from '@stdlib/symbol-ctor';\n\n\n// MAIN //\n\nvar toStrTag = ( typeof Symbol === 'function' ) ? Symbol.toStringTag : '';\n\n\n// EXPORTS //\n\nexport default toStrTag;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return a string value indicating a specification defined classification of an object.\n*\n* @module @stdlib/utils-native-class\n*\n* @example\n* import nativeClass from '@stdlib/utils-native-class';\n*\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* function Beep() {\n* return this;\n* }\n* str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\n\n// MODULES //\n\nimport hasToStringTag from '@stdlib/assert-has-tostringtag-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main;\nif ( hasToStringTag() ) {\n\tmain = polyfill;\n} else {\n\tmain = builtin;\n}\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert-has-own-property';\nimport toStringTag from './tostringtag.js';\nimport toStr from './tostring.js';\n\n\n// MAIN //\n\n/**\n* Returns a string value indicating a specification defined classification of an object in environments supporting `Symbol.toStringTag`.\n*\n* @param {*} v - input value\n* @returns {string} string value indicating a specification defined classification of the input value\n*\n* @example\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* @example\n* var str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* @example\n* function Beep() {\n* return this;\n* }\n* var str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\nfunction nativeClass( v ) {\n\tvar isOwn;\n\tvar tag;\n\tvar out;\n\n\tif ( v === null || v === void 0 ) {\n\t\treturn toStr.call( v );\n\t}\n\ttag = v[ toStringTag ];\n\tisOwn = hasOwnProp( v, toStringTag );\n\n\t// Attempt to override the `toStringTag` property. For built-ins having a `Symbol.toStringTag` property (e.g., `JSON`, `Math`, etc), the `Symbol.toStringTag` property is read-only (e.g., , so we need to wrap in a `try/catch`.\n\ttry {\n\t\tv[ toStringTag ] = void 0;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn toStr.call( v );\n\t}\n\tout = toStr.call( v );\n\n\tif ( isOwn ) {\n\t\tv[ toStringTag ] = tag;\n\t} else {\n\t\tdelete v[ toStringTag ];\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default nativeClass;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport toStr from './tostring.js';\n\n\n// MAIN //\n\n/**\n* Returns a string value indicating a specification defined classification (via the internal property `[[Class]]`) of an object.\n*\n* @param {*} v - input value\n* @returns {string} string value indicating a specification defined classification of the input value\n*\n* @example\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* @example\n* var str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* @example\n* function Beep() {\n* return this;\n* }\n* var str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\nfunction nativeClass( v ) {\n\treturn toStr.call( v );\n}\n\n\n// EXPORTS //\n\nexport default nativeClass;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils-native-class';\n\n\n// VARIABLES //\n\nvar hasInt32Array = ( typeof Int32Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is an Int32Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an Int32Array\n*\n* @example\n* var bool = isInt32Array( new Int32Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isInt32Array( [] );\n* // returns false\n*/\nfunction isInt32Array( value ) {\n\treturn (\n\t\t( hasInt32Array && value instanceof Int32Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Int32Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInt32Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Int32Array === 'function' ) ? Int32Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int32Array === 'function' ) ? Int32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInt32Array from '@stdlib/assert-is-int32array';\nimport INT32_MAX from '@stdlib/constants-int32-max';\nimport INT32_MIN from '@stdlib/constants-int32-min';\nimport GlobalInt32Array from './int32array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Int32Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Int32Array` support\n*\n* @example\n* var bool = hasInt32ArraySupport();\n* // returns \n*/\nfunction hasInt32ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalInt32Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalInt32Array( [ 1, 3.14, -3.14, INT32_MAX+1 ] );\n\t\tbool = (\n\t\t\tisInt32Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === -3 && // truncation\n\t\t\tarr[ 3 ] === INT32_MIN // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasInt32ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Minimum signed 32-bit integer.\n*\n* @module @stdlib/constants-int32-min\n* @type {integer32}\n*\n* @example\n* import INT32_MIN from '@stdlib/constants-int32-min';\n* // returns -2147483648\n*/\n\n\n// MAIN //\n\n/**\n* Minimum signed 32-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* -(2^{31})\n* ```\n*\n* which corresponds to the two's complement bit sequence\n*\n* ```binarystring\n* 10000000000000000000000000000000\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -2147483648\n*/\nvar INT32_MIN = -2147483648|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT32_MIN;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\nimport format from '@stdlib/error-tools-fmtprodmsg';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( format('00z00') );\n}\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Formats an error message for production.\n*\n* @param {string} code - error code\n* @param {*} ...args - error message arguments\n* @returns {string} formatted error message\n*\n* @example\n* var msg = fmtprodmsg( '3', 'wrong_type' );\n* // returns 'https://stdlib.io/e/3?&arg[]=wrong_type'\n*/\nfunction fmtprodmsg() {\n\tvar a = arguments;\n\tvar c = a[ 0 ];\n\tvar u = 'https://stdlib.io/e/'+c+'?';\n\tvar i;\n\tfor ( i = 1; i < a.length; i++ ) {\n\t\tu += '&arg[]=' + encodeURIComponent( a[ i ] );\n\t}\n\treturn u;\n}\n\n\n// EXPORTS //\n\nexport default fmtprodmsg;\n"],"names":["ctor","FLG","Symbol","toStr","Object","prototype","toString","has","hasOwnProperty","Sym","toStrTag","toStringTag","nativeClass","v","isOwn","tag","out","value","property","call","err","hasInt32Array","Int32Array","main","bool","arr","GlobalInt32Array","INT32_MAX","hasInt32ArraySupport","builtin","Error","i","a","arguments","u","length","encodeURIComponent","format"],"mappings":";yCA2BA,ICcIA,EDdAC,EEMgB,mBAAXC,QACoB,iBAApBA,OAAQ,OCZbC,EAAQC,OAAOC,UAAUC,SCAzBC,EAAMH,OAAOC,UAAUG,eCAvBC,EAA0B,mBAAXP,OAA0BA,YAAS,ECKlDQ,EAA+B,mBAAXR,EAA0BA,EAAOS,YAAc,GCiCvEC,EPlBUX,GAAqC,iBAAvBC,OAAOS,YQQ/B,SAAsBE,GACrB,IAAIC,EACAC,EACAC,EJHgBC,EAAOC,EIK3B,GAAKL,QACJ,OAAOV,EAAMgB,KAAMN,GAEpBE,EAAMF,EAAGF,GJRkBO,EISJP,EAAvBG,EJPCG,OAFmBA,EISAJ,IJFbN,EAAIY,KAAMF,EAAOC,GIKxB,IACCL,EAAGF,QAAgB,CACnB,CAAC,MAAQS,GACT,OAAOjB,EAAMgB,KAAMN,EACnB,CAQD,OAPAG,EAAMb,EAAMgB,KAAMN,GAEbC,EACJD,EAAGF,GAAgBI,SAEZF,EAAGF,GAEJK,CACR,EC3BA,SAAsBH,GACrB,OAAOV,EAAMgB,KAAMN,EACpB,ECvBIQ,EAAwC,mBAAfC,WCLzBC,EAA+B,mBAAfD,WAA8BA,WAAa,KCA3DtB,EAA+B,mBAAfsB,WAA8BA,gBAAa,SXuB9DtB,EYND,WACC,IAAIwB,EACAC,EHKkBR,EGHtB,GAAiC,mBAArBS,EACX,OAAO,EAGR,IACCD,EAAM,IAAIC,EAAkB,CAAE,EAAG,MAAO,KAAMC,aHFzBV,EGINQ,EADfD,GHDEH,GAAiBJ,aAAiBK,YACX,wBAAzBV,EAAaK,KGEC,IAAbQ,EAAK,IACQ,IAAbA,EAAK,KACS,IAAdA,EAAK,KCEQ,aDDbA,EAAK,EAEN,CAAC,MAAQL,GACTI,GAAO,CACP,CACD,OAAOA,CACR,CZlBKI,GACGC,EcZR,WACC,MAAM,IAAIC,MCCX,WACC,IAGIC,EAHAC,EAAIC,UAEJC,EAAI,uBADAF,EAAG,GACsB,IAEjC,IAAMD,EAAI,EAAGA,EAAIC,EAAEG,OAAQJ,IAC1BG,GAAK,UAAYE,mBAAoBJ,EAAGD,IAEzC,OAAOG,CACR,CDVkBG,CAAO,SACzB,EdkBerC","x_google_ignoreList":[0,2,3,4,5,6,7,8,9,10,11,13,14,16]}
\ No newline at end of file
diff --git a/lib/index.js b/lib/index.js
deleted file mode 100644
index b93de98..0000000
--- a/lib/index.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-/**
-* Typed array constructor which returns a typed array representing an array of twos-complement 32-bit signed integers in the platform byte order.
-*
-* @module @stdlib/array-int32
-*
-* @example
-* var ctor = require( '@stdlib/array-int32' );
-*
-* var arr = new ctor( 10 );
-* // returns
-*/
-
-// MODULES //
-
-var hasInt32ArraySupport = require( '@stdlib/assert-has-int32array-support' );
-var builtin = require( './main.js' );
-var polyfill = require( './polyfill.js' );
-
-
-// MAIN //
-
-var ctor;
-if ( hasInt32ArraySupport() ) {
- ctor = builtin;
-} else {
- ctor = polyfill;
-}
-
-
-// EXPORTS //
-
-module.exports = ctor;
diff --git a/lib/main.js b/lib/main.js
deleted file mode 100644
index 4961b03..0000000
--- a/lib/main.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MAIN //
-
-var ctor = ( typeof Int32Array === 'function' ) ? Int32Array : void 0; // eslint-disable-line stdlib/require-globals
-
-
-// EXPORTS //
-
-module.exports = ctor;
diff --git a/lib/polyfill.js b/lib/polyfill.js
deleted file mode 100644
index 36b07a6..0000000
--- a/lib/polyfill.js
+++ /dev/null
@@ -1,37 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// TODO: write polyfill
-
-// MAIN //
-
-/**
-* Typed array which represents an array of twos-complement 32-bit signed integers in the platform byte order.
-*
-* @throws {Error} not implemented
-*/
-function polyfill() {
- throw new Error( 'not implemented' );
-}
-
-
-// EXPORTS //
-
-module.exports = polyfill;
diff --git a/package.json b/package.json
index 24e2faf..aa209aa 100644
--- a/package.json
+++ b/package.json
@@ -3,31 +3,7 @@
"version": "0.2.2",
"description": "Int32Array.",
"license": "Apache-2.0",
- "author": {
- "name": "The Stdlib Authors",
- "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
- },
- "contributors": [
- {
- "name": "The Stdlib Authors",
- "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
- }
- ],
- "main": "./lib",
- "directories": {
- "benchmark": "./benchmark",
- "doc": "./docs",
- "example": "./examples",
- "lib": "./lib",
- "test": "./test"
- },
- "types": "./docs/types",
- "scripts": {
- "test": "make test",
- "test-cov": "make test-cov",
- "examples": "make examples",
- "benchmark": "make benchmark"
- },
+ "main": "./index.js",
"homepage": "https://stdlib.io",
"repository": {
"type": "git",
@@ -36,42 +12,6 @@
"bugs": {
"url": "https://github.com/stdlib-js/stdlib/issues"
},
- "dependencies": {
- "@stdlib/assert-has-int32array-support": "^0.2.2"
- },
- "devDependencies": {
- "@stdlib/assert-has-property": "^0.2.2",
- "@stdlib/assert-is-arraybuffer": "^0.2.2",
- "@stdlib/assert-is-boolean": "^0.2.2",
- "@stdlib/assert-is-function": "^0.2.2",
- "@stdlib/assert-is-int32array": "^0.2.2",
- "@stdlib/assert-is-nonnegative-integer": "^0.2.2",
- "@stdlib/math-base-special-pow": "^0.3.0",
- "@stdlib/math-base-special-round": "^0.3.0",
- "@stdlib/random-base-randi": "^0.2.1",
- "@stdlib/random-base-randu": "^0.2.1",
- "@stdlib/symbol-iterator": "^0.2.2",
- "proxyquire": "^2.0.0",
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
- "istanbul": "^0.4.1",
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
- "@stdlib/bench-harness": "^0.2.2"
- },
- "engines": {
- "node": ">=0.10.0",
- "npm": ">2.7.0"
- },
- "os": [
- "aix",
- "darwin",
- "freebsd",
- "linux",
- "macos",
- "openbsd",
- "sunos",
- "win32",
- "windows"
- ],
"keywords": [
"stdlib",
"stdtypes",
diff --git a/stats_browser.html b/stats_browser.html
new file mode 100644
index 0000000..43f81c5
--- /dev/null
+++ b/stats_browser.html
@@ -0,0 +1,4842 @@
+
+
+
+
+
+
+
+ Rollup Visualizer
+
+
+
+
+
+
+
+
+
diff --git a/stats_node.html b/stats_node.html
new file mode 100644
index 0000000..254f63d
--- /dev/null
+++ b/stats_node.html
@@ -0,0 +1,4842 @@
+
+
+
+
+
+
+
+ Rollup Visualizer
+
+
+
+
+
+
+
+
+
diff --git a/test/dist/test.js b/test/dist/test.js
deleted file mode 100644
index a8a9c60..0000000
--- a/test/dist/test.js
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var tape = require( 'tape' );
-var main = require( './../../dist' );
-
-
-// TESTS //
-
-tape( 'main export is defined', function test( t ) {
- t.ok( true, __filename );
- t.strictEqual( main !== void 0, true, 'main export is defined' );
- t.end();
-});
diff --git a/test/test.copy_within.js b/test/test.copy_within.js
deleted file mode 100644
index e663d78..0000000
--- a/test/test.copy_within.js
+++ /dev/null
@@ -1,320 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var tape = require( 'tape' );
-var hasProp = require( '@stdlib/assert-has-property' );
-var isFunction = require( '@stdlib/assert-is-function' );
-var Int32Array = require( './../lib' );
-
-
-// TESTS //
-
-tape( 'main export is a function', function test( t ) {
- t.ok( true, __filename );
- t.strictEqual( typeof Int32Array, 'function', 'main export is a function' );
- t.end();
-});
-
-tape( 'a typed array instance has a `copyWithin` method for copying a sequence of elements within a typed array', function test( t ) {
- var arr = new Int32Array( 2 );
- t.strictEqual( hasProp( arr, 'copyWithin' ), true, 'has property' );
- t.strictEqual( isFunction( arr.copyWithin ), true, 'has method' );
- t.end();
-});
-
-tape( 'the method throws an error if invoked with a `this` context which is not a typed array instance', function test( t ) {
- var values;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- values = [
- '5',
- 5,
- NaN,
- true,
- false,
- null,
- void 0,
- {},
- []
- ];
- for ( i = 0; i < values.length; i++ ) {
- t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] );
- }
- t.end();
-
- function badValue( value ) {
- return function badValue() {
- return arr.copyWithin.call( value, 3, 0 );
- };
- }
-});
-
-tape( 'the method throws an error if invoked with a `this` context which is not a typed array instance (end)', function test( t ) {
- var values;
- var arr;
- var i;
-
- arr = new Int32Array( 2 );
-
- values = [
- '5',
- 5,
- NaN,
- true,
- false,
- null,
- void 0,
- {},
- []
- ];
- for ( i = 0; i < values.length; i++ ) {
- t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] );
- }
- t.end();
-
- function badValue( value ) {
- return function badValue() {
- return arr.copyWithin.call( value, 3, 0, 5 );
- };
- }
-});
-
-tape( 'the method copies a sequence of elements within a typed array', function test( t ) {
- var arr;
- var p;
-
- arr = [
- 0,
- 1,
- 2,
- 3,
- 4
- ];
-
- p = new Int32Array( arr );
- p.copyWithin( 0, 3 );
-
- // Overwritten:
- t.strictEqual( p[ 0 ], 3, 'returns expected value' );
- t.strictEqual( p[ 1 ], 4, 'returns expected value' );
-
- // Remain the same:
- t.strictEqual( p[ 2 ], 2, 'returns expected value' );
- t.strictEqual( p[ 3 ], 3, 'returns expected value' );
- t.strictEqual( p[ 4 ], 4, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the method copies a sequence of elements within a typed array (negative target)', function test( t ) {
- var arr;
- var p;
-
- arr = [
- 0,
- 1,
- 2,
- 3,
- 4
- ];
-
- p = new Int32Array( arr );
- p.copyWithin( -p.length, 3 );
-
- // Overwritten:
- t.strictEqual( p[ 0 ], 3, 'returns expected value' );
- t.strictEqual( p[ 1 ], 4, 'returns expected value' );
-
- // Remain the same:
- t.strictEqual( p[ 2 ], 2, 'returns expected value' );
- t.strictEqual( p[ 3 ], 3, 'returns expected value' );
- t.strictEqual( p[ 4 ], 4, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the method copies a sequence of elements within a typed array (negative start)', function test( t ) {
- var arr;
- var p;
-
- arr = [
- 0,
- 1,
- 2,
- 3,
- 4
- ];
-
- p = new Int32Array( arr );
- p.copyWithin( 0, -2 );
-
- // Overwritten:
- t.strictEqual( p[ 0 ], 3, 'returns expected value' );
- t.strictEqual( p[ 1 ], 4, 'returns expected value' );
-
- // Remain the same:
- t.strictEqual( p[ 2 ], 2, 'returns expected value' );
- t.strictEqual( p[ 3 ], 3, 'returns expected value' );
- t.strictEqual( p[ 4 ], 4, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the method copies a sequence of elements within a typed array (end=length)', function test( t ) {
- var arr;
- var p;
-
- arr = [
- 0,
- 1,
- 2,
- 3,
- 4
- ];
-
- p = new Int32Array( arr );
- p.copyWithin( 0, 3, p.length );
-
- // Overwritten:
- t.strictEqual( p[ 0 ], 3, 'returns expected value' );
- t.strictEqual( p[ 1 ], 4, 'returns expected value' );
-
- // Remain the same:
- t.strictEqual( p[ 2 ], 2, 'returns expected value' );
- t.strictEqual( p[ 3 ], 3, 'returns expected value' );
- t.strictEqual( p[ 4 ], 4, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the method copies a sequence of elements within a typed array (non-inclusive end)', function test( t ) {
- var arr;
- var p;
-
- arr = [
- 0,
- 1,
- 2,
- 3,
- 4
- ];
-
- p = new Int32Array( arr );
- p.copyWithin( 2, 0, 2 );
-
- // Remain the same:
- t.strictEqual( p[ 0 ], 0, 'returns expected value' );
- t.strictEqual( p[ 1 ], 1, 'returns expected value' );
-
- // Overwritten:
- t.strictEqual( p[ 2 ], 0, 'returns expected value' );
- t.strictEqual( p[ 3 ], 1, 'returns expected value' );
-
- // Remain the same:
- t.strictEqual( p[ 4 ], 4, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the method copies a sequence of elements within a typed array (negative end)', function test( t ) {
- var arr;
- var p;
-
- arr = [
- 0,
- 1,
- 2,
- 3,
- 4
- ];
-
- p = new Int32Array( arr );
- p.copyWithin( 2, 0, -3 );
-
- // Remain the same:
- t.strictEqual( p[ 0 ], 0, 'returns expected value' );
- t.strictEqual( p[ 1 ], 1, 'returns expected value' );
-
- // Overwritten:
- t.strictEqual( p[ 2 ], 0, 'returns expected value' );
- t.strictEqual( p[ 3 ], 1, 'returns expected value' );
-
- // Remain the same:
- t.strictEqual( p[ 4 ], 4, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the method copies a sequence of elements within a typed array (target >= length)', function test( t ) {
- var arr;
- var p;
-
- arr = [
- 0,
- 1,
- 2,
- 3,
- 4
- ];
-
- p = new Int32Array( arr );
- p.copyWithin( p.length, 3 );
-
- // Remain the same:
- t.strictEqual( p[ 0 ], 0, 'returns expected value' );
- t.strictEqual( p[ 1 ], 1, 'returns expected value' );
- t.strictEqual( p[ 2 ], 2, 'returns expected value' );
- t.strictEqual( p[ 3 ], 3, 'returns expected value' );
- t.strictEqual( p[ 4 ], 4, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the method copies a sequence of elements within a typed array (target > start)', function test( t ) {
- var arr;
- var p;
-
- arr = [
- 0,
- 1,
- 2,
- 3,
- 4
- ];
-
- p = new Int32Array( arr );
- p.copyWithin( 2, 0 );
-
- // Remain the same:
- t.strictEqual( p[ 0 ], 0, 'returns expected value' );
- t.strictEqual( p[ 1 ], 1, 'returns expected value' );
-
- // Overwritten:
- t.strictEqual( p[ 2 ], 0, 'returns expected value' );
- t.strictEqual( p[ 3 ], 1, 'returns expected value' );
- t.strictEqual( p[ 4 ], 2, 'returns expected value' );
-
- t.end();
-});
diff --git a/test/test.js b/test/test.js
deleted file mode 100644
index 850c454..0000000
--- a/test/test.js
+++ /dev/null
@@ -1,80 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var tape = require( 'tape' );
-var proxyquire = require( 'proxyquire' );
-var hasInt32ArraySupport = require( '@stdlib/assert-has-int32array-support' );
-var polyfill = require( './../lib/polyfill.js' );
-var ctor = require( './../lib' );
-
-
-// VARIABLES //
-
-var hasInt32Arrays = hasInt32ArraySupport();
-
-
-// TESTS //
-
-tape( 'main export is a function', function test( t ) {
- t.ok( true, __filename );
- t.strictEqual( typeof ctor, 'function', 'main export is a function' );
- t.end();
-});
-
-tape( 'if an environment supports `Int32Array`, the export is an alias for `Int32Array`', function test( t ) {
- var Foo;
-
- Foo = proxyquire( './../lib', {
- '@stdlib/assert-has-int32array-support': isTrue,
- './main.js': Mock
- });
- t.strictEqual( Foo, Mock, 'returns builtin' );
-
- if ( hasInt32Arrays ) {
- t.strictEqual( ctor, Int32Array, 'is alias' ); // eslint-disable-line stdlib/require-globals
- }
-
- t.end();
-
- function Mock() {
- return this;
- }
-
- function isTrue() {
- return true;
- }
-});
-
-tape( 'if an environment does not support `Int32Array`, the export is a polyfill', function test( t ) {
- var Foo;
-
- Foo = proxyquire( './../lib', {
- '@stdlib/assert-has-int32array-support': isFalse
- });
-
- t.strictEqual( Foo, polyfill, 'returns polyfill' );
- t.end();
-
- function isFalse() {
- return false;
- }
-});
diff --git a/test/test.polyfill.js b/test/test.polyfill.js
deleted file mode 100644
index 9d6fcb1..0000000
--- a/test/test.polyfill.js
+++ /dev/null
@@ -1,44 +0,0 @@
-/**
-* @license Apache-2.0
-*
-* Copyright (c) 2018 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.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-'use strict';
-
-// MODULES //
-
-var tape = require( 'tape' );
-var ctor = require( './../lib/polyfill.js' );
-
-
-// TESTS //
-
-tape( 'main export is a function', function test( t ) {
- t.ok( true, __filename );
- t.strictEqual( typeof ctor, 'function', 'main export is a function' );
- t.end();
-});
-
-tape( 'the function throws an error when invoked', function test( t ) {
- t.throws( foo, Error, 'throws an error' );
- t.end();
-
- function foo() {
- var f = new ctor(); // eslint-disable-line no-unused-vars
- }
-});
-
-// TODO: tests