@stdlib/array

Arrays.

https://github.com/stdlib-js/array

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.2%) to scientific vocabulary

Keywords

array arrays buffer data javascript matrix namespace ndarray node node-js nodejs ns stdlib structures typed typed-array types vector
Last synced: 4 months ago · JSON representation ·

Repository

Arrays.

Basic Info
  • Host: GitHub
  • Owner: stdlib-js
  • License: apache-2.0
  • Language: JavaScript
  • Default Branch: main
  • Size: 247 MB
Statistics
  • Stars: 7
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
array arrays buffer data javascript matrix namespace ndarray node node-js nodejs ns stdlib structures typed typed-array types vector
Created over 4 years ago · Last pushed 4 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security

README.md

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

Arrays

NPM version Build Status Coverage Status <!-- dependencies -->

Arrays.

## Installation ```bash npm install @stdlib/array ``` Alternatively, - To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]). - If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions). - For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]). The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships. To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
## Usage ```javascript var ns = require( '@stdlib/array' ); ``` #### ns Arrays. ```javascript var o = ns; // returns {...} ``` The namespace exports the following array constructors:
- [`ArrayBuffer( size )`][@stdlib/array/buffer]: constructor which returns an object used to represent a generic, fixed-length raw binary data buffer. - [`Float32Array()`][@stdlib/array/float32]: typed array constructor which returns a typed array representing an array of single-precision floating-point numbers in the platform byte order. - [`Float64Array()`][@stdlib/array/float64]: typed array constructor which returns a typed array representing an array of double-precision floating-point numbers in the platform byte order. - [`Int16Array()`][@stdlib/array/int16]: typed array constructor which returns a typed array representing an array of twos-complement 16-bit signed integers in the platform byte order. - [`Int32Array()`][@stdlib/array/int32]: typed array constructor which returns a typed array representing an array of twos-complement 32-bit signed integers in the platform byte order. - [`Int8Array()`][@stdlib/array/int8]: typed array constructor which returns a typed array representing an array of twos-complement 8-bit signed integers in the platform byte order. - [`SharedArrayBuffer( size )`][@stdlib/array/shared-buffer]: constructor returning an object used to represent a generic, fixed-length raw binary data buffer which can be used to create views of shared memory. - [`Uint16Array()`][@stdlib/array/uint16]: typed array constructor which returns a typed array representing an array of 16-bit unsigned integers in the platform byte order. - [`Uint32Array()`][@stdlib/array/uint32]: typed array constructor which returns a typed array representing an array of 32-bit unsigned integers in the platform byte order. - [`Uint8Array()`][@stdlib/array/uint8]: typed array constructor which returns a typed array representing an array of 8-bit unsigned integers in the platform byte order. - [`Uint8ClampedArray()`][@stdlib/array/uint8c]: typed array constructor which returns a typed array representing an array of 8-bit unsigned integers in the platform byte order clamped to 0-255.
```javascript var arr = new ns.Int32Array( 5 ); // returns [ 0, 0, 0, 0, 0 ] ``` Alternatively, use the `typedarray` function to create a typed array of a given data type:
- [`typedarray()`][@stdlib/array/typed]: create a typed array.
```javascript var arr1 = ns.typedarray( 5 ); // returns [ 0.0, 0.0, 0.0, 0.0, 0.0 ] var arr2 = ns.typedarray( 5, 'uint8' ); // returns [ 0, 0, 0, 0, 0 ] ``` The namespace contains functions to create arrays pre-filled with spaced values:
- [`datespace( start, stop[, length][, opts] )`][@stdlib/array/datespace]: generate an array of linearly spaced dates. - [`incrspace( start, stop[, increment] )`][@stdlib/array/incrspace]: generate a linearly spaced numeric array using a provided increment. - [`linspace( start, stop, length[, options] )`][@stdlib/array/linspace]: generate a linearly spaced array over a specified interval. - [`logspace( a, b[, length] )`][@stdlib/array/logspace]: generate a logarithmically spaced numeric array.
You can use the following functions to retrieve a list of available data types:
- [`dtypes( [kind] )`][@stdlib/array/dtypes]: list of array data types. - [`complexarrayDataTypes()`][@stdlib/array/typed-complex-dtypes]: list of complex typed array data types. - [`typedarrayDataTypes()`][@stdlib/array/typed-dtypes]: list of typed array data types. - [`floatarrayDataTypes()`][@stdlib/array/typed-float-dtypes]: list of typed array floating-point data types. - [`intarrayDataTypes()`][@stdlib/array/typed-integer-dtypes]: list of typed array integer data types. - [`realarrayDataTypes()`][@stdlib/array/typed-real-dtypes]: list of typed array real-valued data types. - [`realarrayFloatDataTypes()`][@stdlib/array/typed-real-float-dtypes]: list of typed array real-valued floating-point data types. - [`intarraySignedDataTypes()`][@stdlib/array/typed-signed-integer-dtypes]: list of typed array signed integer data types. - [`intarrayUnsignedDataTypes()`][@stdlib/array/typed-unsigned-integer-dtypes]: list of typed array unsigned integer data types.
Furthermore, the namespace contains utility functions to retrieve a given constructor:
- [`ctors( dtype )`][@stdlib/array/ctors]: array constructors. - [`ArrayIndex( x[, options] )`][@stdlib/array/index]: array index constructor. - [`complexarrayCtors( dtype )`][@stdlib/array/typed-complex-ctors]: complex typed array constructors. - [`typedarrayCtors( dtype )`][@stdlib/array/typed-ctors]: typed array constructors. - [`floatarrayCtors( dtype )`][@stdlib/array/typed-float-ctors]: floating-point typed array constructors. - [`intarrayCtors( dtype )`][@stdlib/array/typed-integer-ctors]: integer-valued typed array constructors. - [`realarrayCtors( dtype )`][@stdlib/array/typed-real-ctors]: typed array constructors. - [`realarrayFloatCtors( dtype )`][@stdlib/array/typed-real-float-ctors]: real-valued floating-point typed array constructors. - [`intarraySignedCtors( dtype )`][@stdlib/array/typed-signed-integer-ctors]: signed integer typed array constructors. - [`intarrayUnsignedCtors( dtype )`][@stdlib/array/typed-unsigned-integer-ctors]: unsigned integer typed array constructors.
```javascript var ctor = ns.typedarrayCtors( 'float64' ); // returns ctor = ns.typedarrayCtors( 'int' ); // returns null ``` Lastly, the namespace contains various other functions for dealing with arrays, including functions to convert arrays from one data type to another or to serialize them as JSON and vice versa.
- [`base`][@stdlib/array/base]: base (i.e., lower-level) array utilities. - [`BooleanArray()`][@stdlib/array/bool]: boolean array. - [`byteOrders()`][@stdlib/array/byte-orders]: list of byte orders. - [`cartesianPower( x, n )`][@stdlib/array/cartesian-power]: return the Cartesian power. - [`cartesianProduct( x1, x2 )`][@stdlib/array/cartesian-product]: return the Cartesian product. - [`cartesianSquare( x )`][@stdlib/array/cartesian-square]: return the Cartesian square. - [`Complex128Array()`][@stdlib/array/complex128]: 128-bit complex number array. - [`Complex64Array()`][@stdlib/array/complex64]: 64-bit complex number array. - [`convertSame( x, y )`][@stdlib/array/convert-same]: convert an array to the same data type as a second input array. - [`convert( arr, dtype )`][@stdlib/array/convert]: convert an array to an array of a different data type. - [`DataView( buffer[, byteOffset[, byteLength]] )`][@stdlib/array/dataview]: constructor which returns a data view representing a provided array buffer. - [`defaults()`][@stdlib/array/defaults]: default array settings. - [`dtype( array )`][@stdlib/array/dtype]: return the data type of an array. - [`emptyLike( x[, dtype] )`][@stdlib/array/empty-like]: create an uninitialized array having the same length and data type as a provided array. - [`empty( length[, dtype] )`][@stdlib/array/empty]: create an uninitialized array having a specified length. - [`filledBy()`][@stdlib/array/filled-by]: create a filled array according to a provided callback function. - [`filled()`][@stdlib/array/filled]: create a filled array. - [`fixedEndianFactory( dtype )`][@stdlib/array/fixed-endian-factory]: return a typed array constructor for creating typed arrays having a specified byte order. - [`Float32ArrayFE()`][@stdlib/array/fixed-endian-float32]: typed array constructor which returns a typed array representing an array of single-precision floating-point numbers in a specified byte order. - [`Float64ArrayFE()`][@stdlib/array/fixed-endian-float64]: typed array constructor which returns a typed array representing an array of double-precision floating-point numbers in a specified byte order. - [`iterator2array( iterator[, out][, mapFcn[, thisArg]] )`][@stdlib/array/from-iterator]: create (or fill) an array from an iterator. - [`scalar2array( value[, dtype] )`][@stdlib/array/from-scalar]: create a single-element array containing a provided scalar value. - [`fullLike( x, value[, dtype] )`][@stdlib/array/full-like]: create a filled array having the same length and data type as a provided array. - [`full( length, value[, dtype] )`][@stdlib/array/full]: create a filled array having a specified length. - [`littleEndianFactory( dtype )`][@stdlib/array/little-endian-factory]: return a typed array constructor for creating typed arrays stored in little-endian byte order. - [`Float32ArrayLE()`][@stdlib/array/little-endian-float32]: typed array constructor which returns a typed array representing an array of single-precision floating-point numbers in little-endian byte order. - [`Float64ArrayLE()`][@stdlib/array/little-endian-float64]: typed array constructor which returns a typed array representing an array of double-precision floating-point numbers in little-endian byte order. - [`minDataType( value )`][@stdlib/array/min-dtype]: determine the minimum array data type of the closest "kind" necessary for storing a provided scalar value. - [`mostlySafeCasts( [dtype] )`][@stdlib/array/mostly-safe-casts]: return a list of array data types to which a provided array data type can be safely cast and, for floating-point data types, can be downcast. - [`mskfilter( x, mask )`][@stdlib/array/mskfilter]: apply a mask to a provided input array. - [`mskput( x, mask, values[, options] )`][@stdlib/array/mskput]: replace elements of an array with provided values according to a provided mask array. - [`mskreject( x, mask )`][@stdlib/array/mskreject]: apply a mask to a provided input array. - [`nansLike( x[, dtype] )`][@stdlib/array/nans-like]: create an array filled with NaNs and having the same length and data type as a provided array. - [`nans( length[, dtype] )`][@stdlib/array/nans]: create an array filled with NaNs and having a specified length. - [`nextDataType( [dtype] )`][@stdlib/array/next-dtype]: return the next larger array data type of the same kind. - [`oneToLike( x[, dtype] )`][@stdlib/array/one-to-like]: generate a linearly spaced numeric array whose elements increment by `1` starting from one and having the same length and data type as a provided input array. - [`oneTo( n[, dtype] )`][@stdlib/array/one-to]: generate a linearly spaced numeric array whose elements increment by `1` starting from one. - [`onesLike( x[, dtype] )`][@stdlib/array/ones-like]: create an array filled with ones and having the same length and data type as a provided array. - [`ones( length[, dtype] )`][@stdlib/array/ones]: create an array filled with ones and having a specified length. - [`place( x, mask, values[, options] )`][@stdlib/array/place]: replace elements of an array with provided values according to a provided mask array. - [`typedarraypool()`][@stdlib/array/pool]: allocate typed arrays from a typed array memory pool. - [`promotionRules( [dtype1, dtype2] )`][@stdlib/array/promotion-rules]: return the array data type with the smallest size and closest "kind" to which array data types can be **safely** cast. - [`put( x, indices, values[, options] )`][@stdlib/array/put]: replace specified elements of an array with provided values. - [`typedarrayReviver( key, value )`][@stdlib/array/reviver]: revive a JSON-serialized typed array. - [`safeCasts( [dtype] )`][@stdlib/array/safe-casts]: return a list of array data types to which a provided array data type can be safely cast. - [`sameKindCasts( [dtype] )`][@stdlib/array/same-kind-casts]: return a list of array data types to which a provided array data type can be safely cast or cast within the same "kind". - [`shape( arr )`][@stdlib/array/shape]: determine (nested) array dimensions. - [`slice( x[, start[, end]] )`][@stdlib/array/slice]: return a shallow copy of a portion of an array. - [`take( x, indices[, options] )`][@stdlib/array/take]: take elements from an array. - [`circarray2iterator( src[, options][, mapFcn[, thisArg]] )`][@stdlib/array/to-circular-iterator]: create an iterator which repeatedly iterates over the elements of an array-like object. - [`array2fancy( x[, options] )`][@stdlib/array/to-fancy]: convert an array to an object supporting fancy indexing. - [`array2iteratorRight( src[, mapFcn[, thisArg]] )`][@stdlib/array/to-iterator-right]: create an iterator from an array-like object, iterating from right to left. - [`array2iterator( src[, mapFcn[, thisArg]] )`][@stdlib/array/to-iterator]: create an iterator from an array-like object. - [`typedarray2json( typedarray )`][@stdlib/array/to-json]: return a JSON representation of a typed array. - [`sparsearray2iteratorRight( src[, mapFcn[, thisArg]] )`][@stdlib/array/to-sparse-iterator-right]: create an iterator from a sparse array-like object, iterating from right to left. - [`sparsearray2iterator( src[, mapFcn[, thisArg]] )`][@stdlib/array/to-sparse-iterator]: create an iterator from a sparse array-like object. - [`stridedarray2iterator( N, src, stride, offset[, mapFcn[, thisArg]] )`][@stdlib/array/to-strided-iterator]: create an iterator from a strided array-like object. - [`arrayview2iteratorRight( src[, begin[, end]][, mapFcn[, thisArg]] )`][@stdlib/array/to-view-iterator-right]: create an iterator from an array-like object view, iterating from right to left. - [`arrayview2iterator( src[, begin[, end]][, mapFcn[, thisArg]] )`][@stdlib/array/to-view-iterator]: create an iterator from an array-like object view. - [`complexarray()`][@stdlib/array/typed-complex]: create a complex number typed array. - [`realarray()`][@stdlib/array/typed-real]: create a typed array. - [`zeroToLike( x[, dtype] )`][@stdlib/array/zero-to-like]: generate a linearly spaced numeric array whose elements increment by `1` starting from zero and having the same length and data type as a provided input array. - [`zeroTo( n[, dtype] )`][@stdlib/array/zero-to]: generate a linearly spaced numeric array whose elements increment by `1` starting from zero. - [`zerosLike( x[, dtype] )`][@stdlib/array/zeros-like]: create a zero-filled array having the same length and data type as a provided array. - [`zeros( length[, dtype] )`][@stdlib/array/zeros]: create a zero-filled array having a specified length.
## Examples ```javascript var objectKeys = require( '@stdlib/utils/keys' ); var ns = require( '@stdlib/array' ); console.log( objectKeys( ns ) ); ```
* * * ## Notice This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more. For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Watch event: 1
  • Push event: 727
  • Create event: 6
Last Year
  • Watch event: 1
  • Push event: 727
  • Create event: 6

Committers

Last synced: almost 2 years ago

All Time
  • Total Commits: 491
  • Total Committers: 1
  • Avg Commits per committer: 491.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 339
  • Committers: 1
  • Avg Commits per committer: 339.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
stdlib-bot n****y@s****o 491
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 100,226 last-month
  • Total docker downloads: 481,210,190
  • Total dependent packages: 28
  • Total dependent repositories: 284
  • Total versions: 21
  • Total maintainers: 4
npmjs.org: @stdlib/array

Arrays.

  • Homepage: https://stdlib.io
  • License: Apache-2.0
  • Latest release: 0.3.3
    published about 1 year ago
  • Versions: 21
  • Dependent Packages: 28
  • Dependent Repositories: 284
  • Downloads: 100,226 Last month
  • Docker Downloads: 481,210,190
Rankings
Docker downloads count: 0.1%
Downloads: 0.6%
Dependent packages count: 0.9%
Dependent repos count: 0.9%
Average: 4.9%
Stargazers count: 11.5%
Forks count: 15.4%
Funding
  • type: opencollective
  • url: https://opencollective.com/stdlib
Last synced: 4 months ago

Dependencies

convert/benchmark/julia/REQUIRE julia
  • BenchmarkTools 0.5.0
  • julia 1.5
convert-same/benchmark/julia/REQUIRE julia
  • BenchmarkTools 0.5.0
  • julia 1.5
package.json npm
  • @stdlib/bench github:stdlib-js/bench development
  • @stdlib/buffer github:stdlib-js/buffer development
  • @stdlib/number github:stdlib-js/number development
  • @stdlib/process github:stdlib-js/process development
  • @stdlib/random github:stdlib-js/random development
  • istanbul ^0.4.1 development
  • proxyquire ^2.0.0 development
  • tap-spec 5.x.x development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/assert github:stdlib-js/assert#main
  • @stdlib/blas github:stdlib-js/blas#main
  • @stdlib/boolean github:stdlib-js/boolean#main
  • @stdlib/complex github:stdlib-js/complex#main
  • @stdlib/constants github:stdlib-js/constants#main
  • @stdlib/iter github:stdlib-js/iter#main
  • @stdlib/math github:stdlib-js/math#main
  • @stdlib/strided github:stdlib-js/strided#main
  • @stdlib/string github:stdlib-js/string#main
  • @stdlib/symbol github:stdlib-js/symbol#main
  • @stdlib/types github:stdlib-js/types#main
  • @stdlib/utils github:stdlib-js/utils#main
.github/workflows/benchmark.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request v3 composite
.github/workflows/examples.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/productionize.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • stdlib-js/bundle-action main composite
  • stdlib-js/transform-errors-action main composite
.github/workflows/publish.yml actions
  • JS-DevTools/npm-publish v1 composite
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/test.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/test_bundles.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • denoland/setup-deno v1 composite
.github/workflows/test_coverage.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/test_install.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
base/accessor/package.json npm
base/accessor-getter/package.json npm
base/accessor-setter/package.json npm
base/accessors/package.json npm
base/arraylike2object/package.json npm
base/assert/contains/package.json npm
base/assert/is-accessor-array/package.json npm
base/assert/package.json npm
base/binary2d/package.json npm
base/binary3d/package.json npm
base/binary4d/package.json npm
base/binary5d/package.json npm
base/binarynd/package.json npm
base/broadcast-array/package.json npm
base/broadcasted-binary2d/package.json npm
base/broadcasted-binary3d/package.json npm
base/broadcasted-binary4d/package.json npm
base/broadcasted-binary5d/package.json npm
base/broadcasted-unary2d/package.json npm
base/broadcasted-unary3d/package.json npm
base/broadcasted-unary4d/package.json npm
base/broadcasted-unary5d/package.json npm
base/cartesian-power/package.json npm
base/cartesian-product/package.json npm
base/cartesian-square/package.json npm
base/copy/package.json npm
base/copy-indexed/package.json npm
base/filled/package.json npm
base/filled-by/package.json npm
base/filled2d/package.json npm
base/filled2d-by/package.json npm
base/filled3d/package.json npm
base/filled3d-by/package.json npm
base/filled4d/package.json npm
base/filled4d-by/package.json npm
base/filled5d/package.json npm
base/filled5d-by/package.json npm
base/fillednd/package.json npm
base/fillednd-by/package.json npm
base/flatten/package.json npm
base/flatten-by/package.json npm
base/flatten2d/package.json npm
base/flatten2d-by/package.json npm
base/flatten3d/package.json npm
base/flatten3d-by/package.json npm
base/flatten4d/package.json npm
base/flatten4d-by/package.json npm
base/flatten5d/package.json npm
base/flatten5d-by/package.json npm
base/getter/package.json npm
base/incrspace/package.json npm
base/last/package.json npm
base/linspace/package.json npm
base/logspace/package.json npm
base/mskbinary2d/package.json npm
base/mskunary2d/package.json npm
base/mskunary3d/package.json npm
base/n-cartesian-product/package.json npm
base/one-to/package.json npm
base/ones/package.json npm
base/ones2d/package.json npm
base/ones3d/package.json npm
base/ones4d/package.json npm
base/ones5d/package.json npm
base/onesnd/package.json npm
base/package.json npm
base/setter/package.json npm
base/take/package.json npm
base/to-accessor-array/package.json npm
base/unary2d/package.json npm
base/unary2d-by/package.json npm
typed-unsigned-integer-ctors/package.json npm
base/unary3d/package.json npm
base/unary4d/package.json npm
base/unary5d/package.json npm
base/unarynd/package.json npm
base/unitspace/package.json npm
base/zero-to/package.json npm
base/zeros/package.json npm
base/zeros2d/package.json npm
base/zeros3d/package.json npm
base/zeros4d/package.json npm
base/zeros5d/package.json npm
base/zerosnd/package.json npm
buffer/package.json npm
complex128/package.json npm