Extends ObjectPool by creating items (instances of T) automatically with "new T(Args)".
Constructor
Ensures that the pool contains at least the specified number of items. Useful to pre-allocate a pool of a certain size.
Gets an object from the object pool.
Creates a new instance.
type stored in pool
tuple of T constructor argument types.
See Implementation
Extends ObjectPool by creating items (instances of T) automatically with "new T(Args)".