Reconstructs the held value in-place from an initializer list and args.
Declared in <absl/status/statusor.h>
template<
typename U,
typename... Args>
requires std::is_constructible_v<
T, std::initializer_list<U>&, Args&&...>
T&
emplace(
std::initializer_list<U> ilist,
Args&&... args);
A reference to the reconstructed value.
| Name | Description |
|---|---|
| ilist | The initializer list forwarded to the T constructor. |
| args | The additional arguments forwarded to the T constructor. |