| deque< _Tp, _Alloc >::iterator deque::emplace | ( | const_iterator | __position, |
| _Args &&... | __args ) |
Inserts an object in deque before specified iterator.
| __position | A const_iterator into the deque. |
| __args | Arguments. |
This function will insert an object of type T constructed with T(std::forward<Args>(args)...) before the specified location.
Definition at line 187 of file deque.tcc.
References deque(), std::_Deque_iterator< _Tp, _Ref, _Ptr >::_M_const_cast(), std::_Deque_iterator< _Tp, _Ref, _Ptr >::_M_cur, _M_emplace_aux(), _M_impl, emplace_back(), emplace_front(), and std::forward().
