blob: 6af8441fe7e7fd8be8c0969563e6befdc162380b (
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
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
|
#ifndef FWDLIB_HPP
#define FWDLIB_HPP
#include <string>
#include <optional>
#include <iostream>
#include <functional>
#include <unordered_map>
#include <unordered_set>
using namespace std;
typedef const char *fwd_err_t;
static fwd_err_t 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 fwd_err_t fwd_foreach(auto container, auto next)
{
for (auto &n : container)
if (auto e = next(n))
return e;
return nullptr;
}
static fwd_err_t fwd_some(auto option, auto ok, auto fail)
{
if (option)
return ok(std::move(option.value()));
else
return fail();
}
static fwd_err_t fwd_copy(auto n, auto next)
{
return next(n, n);
}
static fwd_err_t fwd_null(auto *x, auto fail, auto ok)
{
if (x)
return ok(*x);
else
return fail();
}
static fwd_err_t fwd_insert(auto container, auto elem, auto next)
{
container.insert(std::move(elem));
return next(std::move(container));
}
static fwd_err_t fwd_println(auto elem)
{
cout << elem << endl;
return nullptr;
}
static fwd_err_t fwd_intalloc(auto ok)
{
int *p = new int{20};
return ok(p);
}
static fwd_err_t fwd_destroy(auto /* a */)
{
/* RAII destroys a */
return nullptr;
}
#endif /* FWDLIB_HPP */
|