Reuse typed arrays
npm install @jpweeks/typedarray-pooltypedarray-pool
===============
A global pool for typed arrays.


``javascript
var pool = require("typedarray-pool")
//Allocate a buffer with at least 128 floats
var f = pool.malloc(128, "float")
// ... do stuff ...
//When done, release buffer
pool.free(f)
`
npm install typedarray-pool
`javascript`
var pool = require("typedarray-pool")
* n is the number of elements in the arraydtype
* is the data type of the array to allocate. Must be one of:
+ "uint8""uint16"
+ "uint32"
+ "int8"
+ "int16"
+ "int32"
+ "float"
+ "float32"
+ "double"
+ "float64"
+ "arraybuffer"
+ "data"
+ "uint8_clamped"
+ "buffer"
+
Returns A typed array with at least n elements in it. If dtype is undefined, an ArrayBuffer is returned.
Note You can avoid the dispatch by directly calling one of the following methods:
* pool.mallocUint8pool.mallocUint16
* pool.mallocUint32
* pool.mallocInt8
* pool.mallocInt16
* pool.mallocInt32
* pool.mallocFloat
* pool.mallocDouble
* pool.mallocArrayBuffer
* pool.mallocDataView
* pool.mallocUint8Clamped
*
* array The array object to return to the pool.
Note You can speed up the method if you know the type of array before hand by calling one of the following:
* pool.freeUint8pool.freeUint16
* pool.freeUint32
* pool.freeInt8
* pool.freeInt16
* pool.freeInt32
* pool.freeFloat
* pool.freeDouble
* pool.freeArrayBuffer
* pool.freeDataView
* pool.freeUint8Clamped
* pool.freeBuffer`
*