The OpenD Programming Language

UnrolledList.insertBack

Inserts the given item into the end of the list.

  1. T* insertBack(T item)
    struct UnrolledList(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T, size_t cacheLineSize = 64)
    T*
    insertBack
    ()
  2. void insertBack(R range)

Return Value

Type: T*

a pointer to the inserted item.

Meta