The OpenD Programming Language

UnrolledList.insertAnywhere

Inserts the given item in the frontmost available cell, which may put the item anywhere in the list as removal may leave gaps in list nodes. Use this only if the order of elements is not important.

struct UnrolledList(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T, size_t cacheLineSize = 64)
@trusted
T*
insertAnywhere
()

Return Value

Type: T*

a pointer to the inserted item.

Meta