The allocator of elements in pool, it's invoked directly without new
Initial pool size
实际对象池数组。
对象池大小。
扩充对象池容量,会自动扩充尺寸到两倍,并填充新的元素。
移除对象池中的一个元素,同时会减小池子尺寸。
The index of the element to be removed
清空对象池。目前仅仅会设置尺寸为 0
设置对象池大小,并填充新的元素。
The new size of the pool
Generated using TypeDoc
循环对象池。这种池子被设计为每次使用都完整复用。 它没有回收和提取的函数,通过获取 data 可以获取池子中所有元素,全部都应该被当做新对象来使用。 开发者不应该在相互交叉的不同逻辑中同时使用同一个循环对象池。 池子尺寸可以在池子满时自动扩充,也可以手动调整。
Pool