Constructs the inner value T in-place from the given arguments.
Declared in <absl/status/statusor.h>
template<typename... Args>
explicit
StatusOr(
std::in_place_t tag,
Args&&... args);
Constructs the inner value T in-place using the provided args, using the T(args...) constructor.
| Name | Description |
|---|---|
| args | The arguments forwarded to the T constructor. |
| tag | A tag that selects this overload. |