JavaScript typed arrays, implemented in Firefox 4 and Chrome 7, are a very efficient way of storing and working with binary data in JavaScript. However, the current implementations only provide integer views up to 32 bits per member, with Int32Array and Uint32Array. Are 64-bit integer views being planned for implementation? How can I implement 64-bit integer views? How much slower will they be?
| |||||||||
feedback
|
|
There's no practical way to implement an If you really need an array of 64-bit integers, regardless of performance, the Google Closure library has a 64-bit | |||||
feedback
|