nngn
Loading...
Searching...
No Matches
string.h
Go to the documentation of this file.
1
#ifndef NNGN_UTILS_STRING_H
2
#define NNGN_UTILS_STRING_H
3
4
#include <sstream>
5
#include <string>
6
7
#include "
utils.h
"
8
9
namespace
nngn
{
10
11
std::string
fmt
(
auto
&&...args) {
12
std::stringstream
s
= {};
13
(
s
<< ... <<
FWD
(args));
14
return
s
.str();
15
}
16
17
}
18
19
#endif
nngn
Definition
audio.cpp:7
nngn::fmt
std::string fmt(auto &&...args)
Definition
string.h:11
utils.h
FWD
#define FWD(...)
Definition
utils.h:18
s
std::chrono::seconds s
Definition
timing.cpp:6
src
utils
string.h
Generated by
1.11.0