blob: bb5084c519a1dd31632c25ffab2f7e32be9552eb (
plain) (
blame)
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
|
#ifndef FWDLIB_HPP
#define FWDLIB_HPP
#include <string>
#include <optional>
#include <iostream>
#include <functional>
#include <unordered_map>
#include <unordered_set>
using namespace std;
static void fwd_getline(auto next)
{
if (cin.eof())
return next(optional<string>{});
if (string line; getline(cin, line))
return next(optional<string>{line});
else
return next(optional<string>{});
}
static void fwd_foreach(auto container, auto next)
{
for (auto &n : container)
next(n);
}
static void fwd_some(auto option, auto ok, auto fail)
{
if (option)
return ok(std::move(option.value()));
else
return fail();
}
static void fwd_copy(auto n, auto next)
{
return next(n, n);
}
static void fwd_insert(auto container, auto elem, auto next)
{
container.insert(std::move(elem));
return next(std::move(container));
}
static void fwd_println(auto elem)
{
cout << elem << endl;
}
#endif /* FWDLIB_HPP */
|