[#absl-StatusOr-2constructor-089] = xref:absl.adoc[absl]::xref:absl/StatusOr.adoc[StatusOr]::StatusOr :relfileprefix: ../../ :mrdocs: Constructs the inner value `T` in‐place from the given arguments. == Synopsis Declared in `<absl/status/statusor.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... Args> explicit StatusOr( std::in_place_t tag, Args&&... args); ---- == Description Constructs the inner value `T` in‐place using the provided args, using the `T(args...)` constructor. == Parameters [cols="1,4"] |=== | Name| Description | *args* | The arguments forwarded to the `T` constructor. | *tag* | A tag that selects this overload. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#