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