Luna::RingDeque::insert
iterator insert(const_iterator pos, InitializerList< value_type > ilist)
Inserts one range of elements specified by the initializer list to the queue.
Parameters
-
in pos
The iterator to the position to insert elements. The elements will be inserted before the element pointed by this iterator. This can be
end(), indicating that the element will be inserted at the end of the queue. -
in ilist
The initializer list.
Return value
Returns one iterator to the first inserted element.
Valid Usage
- If
pos != end(),posmust points to a valid element in the queue.