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!
Maximum Array Length
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
Maximum length for a generic array.
bash
npm install @stdlib/constants-array-max-array-length
javascript
var MAX_ARRAY_LENGTH = require( '@stdlib/constants-array-max-array-length' );
#### MAX_ARRAY_LENGTH
Maximum length for a generic array.
javascript
var len = MAX_ARRAY_LENGTH;
// returns 4294967295
javascript
var MAX_ARRAY_LENGTH = require( '@stdlib/constants-array-max-array-length' );
function alloc( len ) {
var arr;
var i;
if ( len > MAX_ARRAY_LENGTH ) {
throw new RangeError( 'invalid argument. The maximum length for a generic array is '+MAX_ARRAY_LENGTH+'. To create a longer array-like data structure, consider either typed arrays or an array-like object.' );
}
// Manually allocate to ensure "fast" elements...
arr = [];
for ( i = 0; i < len; i++ ) {
arr.push( 0 );
}
return arr;
}
var arr = alloc( 10 );
console.log( arr );
try {
arr = alloc( 1e300 );
} catch ( err ) {
console.error( err.message );
}
@stdlib/constants-array/max-typed-array-length
][@stdlib/constants/array/max-typed-array-length]: maximum length for a typed array.