Reconstructs the held value in-place from the given arguments.
Declared in <absl/status/statusor.h>
template<typename... Args>
T&
emplace(Args&&... args);
Reconstructs the inner value T in-place using the provided args, using the T(args...) constructor. Returns reference to the reconstructed T.
A reference to the reconstructed value.
| Name | Description |
|---|---|
| args | The arguments forwarded to the T constructor. |