Format to an output stream
Synopsis
std::ostream&
operator<<(
std::ostream& os,
params_encoded_base const& qp);
Description
Any percent‐escapes are emitted as‐is; no decoding is performed.
Complexity
Linear in ps.buffer().size()
.
Effects
return os << ps.buffer();
Return Value
A reference to the output stream, for chaining
Parameters
Name |
Description |
os |
The output stream to write to |
qp |
The params to write |
Created with MrDocs