[#absl-NoDestructor-08-2constructor-04e] = xref:absl.adoc[absl]::xref:absl/NoDestructor-08.adoc[NoDestructor]::NoDestructor :relfileprefix: ../../ :mrdocs: Forwards copy construction for T. Enables usage like this: static NoDestructor<std::array<string, 3>> x{{{"1", "2", "3"}}}; static NoDestructor<std::vector<int>> x{{1, 2, 3}}; == Synopsis Declared in `<absl/base/no_destructor.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr explicit NoDestructor(T const& x); ---- == Parameters [cols="1,4"] |=== | Name| Description | *x* | The value to copy‐construct the wrapped `T` from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#