std::forward_list::emplace_front

From Cppreference

Jump to: navigation, search
template< class... Args >
void emplace_front( Args&&... args );
(C++11 feature)

Inserts a new element to the beginning of 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.

Contents

[edit] Parameters

args - arguments to forward to the constructor of the element

[edit] Return value

(none)

[edit] Complexity

Constant.

[edit] See also

push_front
inserts elements to the beginning
(public member function)