DList.insertBack

Inserts stuff to the front/back of the container. stuff can be a value convertible to T or a range of objects convertible to T. The stable version behaves the same, but guarantees that ranges iterating over the container are never invalidated.

struct DList(T)
size_t
insertBack
(
Stuff
)
(
Stuff stuff
)

Return Value

Type: size_t

The number of elements inserted

Complexity: O(log(n))

Meta