Construct a nested params stream from a substream and several parameter sets.
Declared in <serialize.h>
template<
typename NestedSubstream,
typename Params1,
typename Params2,
typename... NestedParams>
ParamsStream(
NestedSubstream&& s,
Params1 const& params1,
Params2 const& params2,
NestedParams const&... params);
| 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. |