-
Sub-task
-
Resolution: Done
-
Medium
-
None
-
None
-
light refactory one
A memory pool that can be implemented through the combination of :
- a vector for storing pool elements
- a vector for stacking free indices and providing constant time get/put
- a bitmap for allowing fast iteration over used elements
Pools will be used for most data structures and should allow for the addition of various indices (hash tables).