A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://en.cppreference.com/w/cpp/algorithm/../container/inplace_vector/unchecked_emplace_back.html below:

std::inplace_vector<T,N>::unchecked_emplace_back - cppreference.com

template< class... Args >
constexpr reference unchecked_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).... Equivalent to return *try_emplace_back(std::forward<Args>(args)...);.

Before the call to this function size() < capacity() must be true. Otherwise, the behavior is undefined.

No iterators or references are invalidated, except end(), which is invalidated if the insertion occurs.

[edit] Parameters args - arguments to forward to the constructor of the element Type requirements -T must be EmplaceConstructible into inplace_vector from std::forward<Args>(args).... [edit] Return value

back(), i.e. a reference to the inserted element.

[edit] Complexity

Constant.

[edit] Exceptions

Any exception thrown by initialization of inserted element. If an exception is thrown for any reason, this function has no effect (strong exception safety guarantee).

[edit] Notes [edit] Example
#include <inplace_vector>
#include <new>
#include <print>
#include <string>
#include <utility>
 
int main()
{
    std::inplace_vector<std::pair<std::string, std::string>, 2> fauna;
    std::string dog{"\N{DOG}"};
 
    fauna.unchecked_emplace_back("\N{CAT}", dog);
    fauna.unchecked_emplace_back("\N{CAT}", std::move(dog));
    std::println("fauna = {}", fauna);
 
    // fauna.unchecked_emplace_back("BUG", "BUG"); // undefined behavior: no space
}

Output:

fauna = [("🐈", "🐕"), ("🐈", "🐕")]
[edit] See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4