std::forward_list::emplace_after

std::forward_list::emplace_after

template< class... Args > 
iterator emplace_after( const_iterator pos, Args&&... args );
(since C++11)

Inserts a new element into a position after the specified position in the container. The element is constructed in-place, i.e. no copy or move operations are performed. The constructor of the element is called with exactly the same arguments, as supplied to the function.

No iterators or references are invalidated.

Parameters

pos - iterator after which the new element will be constructed
args - arguments to forward to the constructor of the element

Return value

iterator to the new element.

Complexity

Constant.

Exceptions

If an exception is thrown (e.g. by the constructor), the container is left unmodified, as if this function was never called (strong exception guarantee).

See also

inserts elements after an element
(public member function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/container/forward_list/emplace_after

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部