#include <sstream>
Go to the source code of this file.
|
void | _append_stream (std::ostringstream &) |
|
template<typename T , typename... Args> |
void | _append_stream (std::ostringstream &stream, T &&first_value, Args &&...other_values) |
|
template<typename... Args> |
std::string | SSTR (Args &&...components) |
| Creates a temporary string stream for string concatenation. More...
|
|
void _append_stream |
( |
std::ostringstream & |
| ) |
|
|
inline |
template<typename T , typename... Args>
void _append_stream |
( |
std::ostringstream & |
stream, |
|
|
T && |
first_value, |
|
|
Args &&... |
other_values |
|
) |
| |
|
inline |
template<typename... Args>
std::string SSTR |
( |
Args &&... |
components | ) |
|
|
inline |
Creates a temporary string stream for string concatenation.
All arguments will be concatenated in an ostringstream
- Returns
- Arguments concatenated as string.
Definition at line 21 of file stringtricks.h.