Namespaces
Variants
Actions

std::inplace_vector<T,N>::emplace_back

From cppreference.com
 
 
 
 
template< class... Args >
constexpr reference emplace_back( Args&&... args );
(since C++26)

Appends a new element to the end of the container. Typically, the element is constructed using placement-new to construct the element in-place at the location provided by the container. The arguments args... are forwarded to the constructor as std::forward<Args>(args)....

No iterators or references are invalidated, except