-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
161 lines (124 loc) · 2.76 KB
/
main.cpp
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
#include <stdio.h>
#include <list>
#include <algorithm>
#include <iostream>
#include "lib/fcl.cpp"
#include <vector>
#include <utility>
/* functional collection library */
std::vector<int> newIntVector()
{
std::vector<int> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
v.push_back(4);
v.push_back(5);
v.push_back(6);
v.push_back(7);
v.push_back(8);
v.push_back(9);
return v;
}
std::vector<int> newIntList()
{
std::vector<int> l;
l.push_back(1);
l.push_back(2);
l.push_back(3);
l.push_back(4);
l.push_back(5);
l.push_back(6);
l.push_back(7);
l.push_back(8);
l.push_back(9);
return l;
}
void p(const int& n)
{
printf("[element]: %d\n", n);
}
int f(const int& n)
{
return n + 1;
}
bool filter(const int& n)
{
return n > 5;
}
bool find (const int& n)
{
return n > 5;
}
bool anyFalse (const int& n)
{
return n > 20;
}
bool anyTrue (const int& n)
{
return n > 5;
}
bool allTrue (const int& n)
{
return n > 0;
}
bool allFalse (const int& n)
{
return n > 5;
}
double reduce( const double& a, const int& b )
{
return ( (int) a ) + b;
}
int main(void)
{
std::vector<int> out;
printf("{each}\n");
fcl::each(newIntList(), p);
printf("\n");
printf("{map}\n");
out = fcl::map(newIntVector(), f);
fcl::each(out, p);
printf("\n");
printf("{filter}\n");
out = fcl::filter(newIntVector(), filter);
fcl::each(out, p);
printf("\n");
printf("{partition}\n");
std::pair< std::vector < int > , std::vector< int > > pair = fcl::partition(newIntVector(), filter);
printf("{satisfies}\n");
fcl::each(pair.first, p);
printf("{dont satisfies}\n");
fcl::each(pair.second, p);
printf("\n");
printf("{find}\n");
int found = fcl::find(newIntVector(), find);
printf("%d\n", found);
printf("\n");
printf("{reduce}\n");
double initialValue = 1000.0;
double res = fcl::reduce(newIntVector(), initialValue, reduce);
printf("%f\n", res);
printf("\n");
printf("{any}\n");
bool t = fcl::any(newIntVector(), anyTrue);
bool f = fcl::any(newIntVector(), anyFalse);
printf("should be true: %s\n", t ? "true" : "false");
printf("should be false: %s\n", f ? "true" : "false");
printf("\n");
printf("{all}\n");
t = fcl::all(newIntVector(), allTrue);
f = fcl::all(newIntVector(), allFalse);
printf("should be true: %s\n", t ? "true" : "false");
printf("should be false: %s\n", f ? "true" : "false");
printf("\n");
printf("{take}\n");
out = fcl::take(newIntVector(), 3);
fcl::each(out, p);
printf("\n");
printf("{drop}\n");
out = fcl::drop(newIntVector(), 3);
fcl::each(out, p);
printf("\n");
return 0;
}