-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplayground.cpp
More file actions
285 lines (217 loc) · 5.24 KB
/
playground.cpp
File metadata and controls
285 lines (217 loc) · 5.24 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
//*****************************************************************************
//
// Author: Michael Price
// License: Attribution-NonCommercial-NoDerivs 3.0 Unported
// http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode
//
//*****************************************************************************
//#include <vector>
// void rval_helper ()
// {
// Moveable this_can_move;
// return this_can_move;
// }
// void rval_func ()
// {
// Moveable some_object = rval_helper();
// Moveable && rref = rval_helper();
// Moveable;// m(1);
// //std::vector v;
// }
//#include <iostream>
template <typename T, typename ... Params>
auto multiplier (T && t, Params ... params) -> decltype(t * multiplier(params...))
{
return t * multiplier(params...);
}
template <typename T>
auto multiplier (T && t) -> T
{
return t;
}
// int multiplier() { return 1; }
int main()
{
//std::cout << multiplier(2, 3) << std::endl;
multiplier(2, 3);
multiplier(6, 7.1, 8);
return 0;
}
class Distance
{
public:
constexpr Distance (long long millimeters)
: millis(millimeters)
{ }
private:
long long millis = 0;
};
constexpr Distance operator"" _m (unsigned long long meters)
{ return Distance(meters*1000); }
constexpr Distance operator"" _km (unsigned long long kilometers)
{ return Distance(kilometers*1000*1000); }
constexpr Distance operator"" _cm (unsigned long long centimeters)
{ return Distance(centimeters*10); }
void literal_distances ()
{
// Distance a = 10_m;
// Distance b = 1_km;
// Distance c = 1_cm;
Distance z {1};
}
template <typename TyContainer, typename TyPred>
void print_if (const TyContainer & container,
TyPred && predicate)
{
for (auto thing : container)
{
if (predicate(thing))
{
//std::cout << thing << std::endl;
}
}
}
void printapalooza ()
{
int some_ints[5] = {0, 1, 2, 3, 4};
print_if(some_ints, [] (int i)
{
return i%2;
});
}
void no_exceptions () noexcept(true)
{
throw 1;
}
class Base
{
public:
Base() = default;
virtual void l33t (double d) { }
};
class DerivedDumb : public Base
{
public:
virtual void l33t (double d) { }
};
class DerivedSmart : public Base
{
public:
virtual void l33t (double d) override { }
};
bool ambig (int i);
char* ambig (void * v);
#define NULL 0
void nothingness ()
{
// int * _i = NULL;
// int * i = nullptr;
// int _j = NULL;
//int j = nullptr; // ERROR!!!
if (ambig(0)) { }
if (ambig(NULL)) { }
if (ambig(nullptr)) { }
}
template <typename Ty>
struct is_integral
{
static const bool value = false;
};
template <>
struct is_integral<int>
{ static const bool value = true; };
template <typename T>
void some_integral_stuff (T && t)
{
static_assert(is_integral<T>::value, "Template param [T] is not an integral type");
}
void memcpy (void *dst, void* src);
struct StuffThis
{
char one;
char two;
char three;
char four;
//char five;
};
void my_stuff ()
{
some_integral_stuff(1);
//some_integral_stuff(1.0);
StuffThis st;
char buffer[4];
static_assert(sizeof(StuffThis) <= sizeof(buffer), "Uh oh, our buffer is WEAK!");
memcpy(buffer, &st);
}
struct IMaiar
{
virtual bool shallYouPass () = 0;
};
struct GandalfGrey : public IMaiar
{
virtual bool shallYouPass () { return false; }
};
struct GandalfWhite final : public GandalfGrey
{
virtual bool shallYouPass () { return true; }
};
// struct GandalfWashedOut : public GandalfWhite
// {
// virtual bool shallYouPass ()
// { throw "Why bother"; return false; }
// };
void unicodify ()
{
// const char * iso88591 = "Hello World!";
// const wchar_t * platform_encoding = L"hallå världen";
// Hallo Welt
// const char * utf8 = u8"\x48\x61\x6C\x6C\x6F"
u8"\x20\x57\x65\x6C\x74";
// Hello World -> Shalom Olam (but in Hebrew script)
// const char16_t * utf16 = u"\u05E9\u05DC\u05D5\u05DD \u05E2\u05D5\u05DC\u05DD";
// Hello World + some supplementary plane chars (in Simplified Chinese)
// const char32_t * utf32 =
// U"\u4F60\u597D\u4E16\u754C_\U00020027\U00020929\U00021A3A\U00021F6B";
}
void raw ()
{
/* const char * xhtml = R"(
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head/> <body/>
</html>
)";
const char * uh_oh = R"*(
What if there is a )" in my text
)*";
*/
}
class Avenger
{
public:
Avenger () : Avenger("Newb") { }
Avenger (const char * name) { }
~Avenger () { }
Avenger (const Avenger&) { }
Avenger (Avenger &&) { }
};
Avenger getCat () { return Avenger("Black Panther"); }
void avengers_assemble ()
{
Avenger cap("Captain America");
Avenger irony = "Iron-Man";
Avenger strongest = Avenger("Hulk");
Avenger skrull(cap);
Avenger cat(getCat());
//Avenger newb(); // function declaration!!!
Avenger newb{}; // variable declaration!!!
Avenger team[] = {cap, irony, strongest, cat, newb, "Thor"};
team[0];
// instead of vector::push_back!
}
//#include "array"
//#include <tuple>
//#include <type_traits>
//#include <atomic>
//#include <functional>