Skip to content
/ bigarray Public
forked from iden3/bigarray

Array Object for nodejs that supports millions of elements.

Notifications You must be signed in to change notification settings

mbman/bigarray

 
 

Repository files navigation

bigarray

Array object for nodejs that Support millions of elements

usage

npm install bigarray
import BigArray from "@iden3/bigarray";

A = new BigArray(1000000);

for (let i=0; i<1000000; i++) {
	A.push({
		num: i;
		square: i*i;
	});
}

console.log(A[3].num * A[700000].square);

About

Array Object for nodejs that supports millions of elements.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%