Hi
So, today I've updated my Gitlab -> IContainers repo.
It has seen the addition of:
- INodeManager, a memory manager for linked lists et.al.
- IStack, together with TiStack implement a stack of pointers.
- ITSStack, a thread safe version of IStack.
These classes implement their functionality via linked lists. One of the potential problems with linked lists, is the possible 'heap-thrashing', due to many small(ish) allocations and disposals. Thus these sport an own node-pager / manager, to keep that from happening...
The library can be fetched from
HERE.
In the hope it can be useful for somebody

Regards Benny