Interface IPoolable<T>
- Namespace
- OmegaEngine.Collections
- Assembly
- OmegaEngine.dll
An interface items must implement to be addable to Pool<T>. Poolable items directly store a reference to their successor.
public interface IPoolable<T> where T : class, IPoolable<T>
Type Parameters
T
The type of items to store in Pool<T>.
- Extension Methods
Properties
NextElement
A reference to the next element in the Pool<T> chain.
T NextElement { get; set; }
Property Value
- T