std::optional::emplace
From cppreference.com
template< class... Args > void emplace( Args&&... args ); |
(since C++14) | |
template< class U, class... Args > void emplace( std::initializer_list<U> ilist, Args&&... args ); |
(since C++14) | |
Constructs the contained value in-place. If *this is in engaged state before the call, the contained value is destroyed by calling its destructor.
1) Initializes the contained value by calling its constructor with
args...
as parameters.2) Inilializes the contained value by calling its constructor with
ilist
and args...
as parameters.Contents |
[edit] Parameters
args... | - | the arguments to pass to the constructor |
ilist | - | the initializer list to pass to the constructor |
Type requirements | ||
-T must be constructible from Args...
| ||
-T must be constructible from std::initializer_list and Args...
|
[edit] Return value
(none)
[edit] Exceptions
Any exception thrown by the selected constructor of T
. If an exception is thrown, *this is in disengaged state after the call.
[edit] See also
assigns contents (public member function) |