[#ParamsStream-02-2constructor-0a] = xref:ParamsStream-02.adoc[ParamsStream]::ParamsStream :relfileprefix: ../ :mrdocs: Construct a nested params stream from a substream and several parameter sets. == Synopsis Declared in `<serialize.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename NestedSubstream, typename Params1, typename Params2, typename... NestedParams> ParamsStream( NestedSubstream&& s, Params1 const& params1, Params2 const& params2, NestedParams const&... params); ---- == Parameters [cols="1,4"] |=== | Name| Description | *s* | The underlying stream to wrap. | *params1* | The outermost parameter set to attach. | *params2* | The next parameter set to attach. | *params* | The remaining parameter sets to attach. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#