aboutsummaryrefslogtreecommitdiff
path: root/lib/fwdlib.hpp
blob: 034c91a29ce37db2b96e81dbca5990f10f03d5de (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
#ifndef FWDLIB_HPP
#define FWDLIB_HPP

#include <string>
#include <optional>
#include <iostream>
#include <unordered_map>
#include <unordered_set>

using namespace std;

static void fwd_if(auto cond, auto ok, auto fail)
{
	if (cond)
		ok();
	else
		fail();
}

static void fwd_getline(auto next)
{
	if (cin.eof())
		next(optional<string>{});

	if (string line; getline(cin, line))
		next(optional<string>{line});
	else
		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)
		ok(std::move(option.value()));
	else
		fail();
}

static void fwd_insert(auto container, auto elem, auto next)
{
	container.insert(std::move(elem));
	next(std::move(container));
}

static void fwd_println(auto elem)
{
	cout << elem << endl;
}

#endif /* FWDLIB_HPP */