blob: cea47724dfd0c46b9dce54457852f290056f36b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#include <iostream>
#include <sstream>
#include <string>
struct StringBuilder
{
template <typename T>
StringBuilder& append(const T& thing)
{
ss << thing;
return *this;
}
std::string build()
{
return ss.str();
}
std::stringstream ss;
};
int main()
{
std::string my_____String = StringBuilder().append(7).append(" + ").append(21).append(" = ").append(7 + 21).build();
std::string my_____String = StringBuilder()
.append(7)
.append(" + ")
.append(21)
.append(" = ")
.append(7 + 21)
.build();
std::cout << my___String << std::endl;
}
void function()
{
auto response = ResponseBuilder_1(1)
.setStatus_1(status)
.finish_1();
ResponseBuilder_2(request)
.setStatus_2(status)
.finish_2();
return ResponseBuilder_3(request).setStatus_3(status).finish_3();
}
|