The OpenD Programming Language

UnrolledList.back

Time complexity is O(nodeCapacity), where the nodeCapacity is the number of items in a single list node. It is a constant related to the cache line size.

struct UnrolledList(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T, size_t cacheLineSize = 64)
ref inout nothrow @property
inout(T)
back
()

Return Value

Type: inout(T)

the item at the back of the list

Meta