Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2018. The current version is 1.89.0.
Constructor.
template< class... Args> string_param( Args const&... args);
This function constructs a string as if by concatenating the result of
streaming each argument in order into an output stream. It is used as
a notational convenience at call sites which expect a parameter with
the semantics of a string_view.
The implementation uses a small, internal static buffer to avoid memory allocations especially for the case where the list of arguments to be converted consists of a single integral type.
|
Name |
Description |
|---|---|
|
|
One or more arguments to convert |