Containers

Per Nordlöw per.nordlow at gmail.com
Wed Sep 1 20:55:18 UTC 2021


On Wednesday, 1 September 2021 at 12:09:19 UTC, rikki cattermole 
wrote:
> Unrolled linked list, a linked list with X number of entries 
> per node.

Yes, where each node typically is sized to fit in a single 
cache-line. Suitable for small element types.

I don't know why an UnrolledList is preferred over a traditional 
vector type bundled with an allocator that does the same grouping 
of allocations, though.


More information about the Digitalmars-d mailing list