std::inplace_vector<T,N>::try_emplace_back
From cppreference.com
template< class... Args >
constexpr std::optional<reference> try_emplace_back( Args&&... args );
|
(since C++26) | |
Conditionally appends an object of type T to the end of the container.
If size() == capacity() is true, there are no effects. Otherwise, appends direct-non-list-initialized with std::forward<Args>(args)... object of type T.
No iterators or references are invalidated, except end(), which is invalidated if the insertion occurs.
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)....
| ||
Return value
std::nullopt if size() == capacity(), std::optional<reference>(std::in_place, back()) otherwise.
Complexity
Constant.
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).
Notes
| This section is incomplete Reason: Explain the purpose of this API. |
| Feature-test macro | Value | Std | Feature |
|---|---|---|---|
__cpp_lib_inplace_vector |
202603L |
(C++26) | Better return type (std::optional<reference> instead of pointer) for try_push_back and try_emplace_back
|
Example
Run this code
#include <cassert>
#include <complex>
#include <inplace_vector>
#include <optional>
int main()
{
using namespace std::complex_literals;
using C = std::complex<double>;
using I = std::inplace_vector<C, 3>;
auto v = I{1.0 + 2.0i, 3.0 + 4.0i};
std::optional<C&> c = v.try_emplace_back(5.0, 6.0);
assert(*c == 5.0 + 6.0i);
assert((v == I{1.0 + 2.0i, 3.0 + 4.0i, 5.0 + 6.0i}));
c = v.try_emplace_back(7.0, 8.0); // no space => no insertion
assert(c == std::nullopt);
assert((v == I{1.0 + 2.0i, 3.0 + 4.0i, 5.0 + 6.0i}));
}
See also
| constructs an element in-place at the end (public member function) | |
| adds an element to the end (public member function) | |
| adds a range of elements to the end (public member function) | |
| tries to add a range of elements to the end (public member function) | |
| unconditionally constructs an element in-place at the end (public member function) | |
| unconditionally adds an element to the end (public member function) | |
| removes the last element (public member function) | |
| creates a std::back_insert_iterator of type inferred from the argument (function template) |