-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipe_operator.fold
227 lines (158 loc) · 3.94 KB
/
Pipe_operator.fold
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
-- Stream by matz
seq(100) | filter{x-> x % 2 == 0} | stdout
seq 100 |> filter (x -> x % 2 == 0) |> each print
-- With anonymous functions
Random.int n
|> x -> x + 1
|> x -> x * 2
|> string
|> print
Random.int n
|> (x -> x + 1)
|> (x -> x * 2)
|> string
|> print
sum_of_squared_odd_numbers upper =
[1 .. ] >> map (n => n * n) -- Squared
>> take_while (n => n < upper) -- Below upper limit
>> filter is_odd -- That are odd
>> xs => reduce xs sum -- Sum them
interface IO t
read :: t -> a
write :: a -> t
open :: a -> t
close :: t -> ()
end
instance Producer File
iter file =
try
yield (File.get_line file)
iter file
with End_of_file ->
File.close file
return ()
end
stop = File.close
end
instance IO List
next [] = return ()
next (a & l) = yield a >> next l
stop l = return ()
end
file :: Path -> Node Void String r
file path =
guard (loop chan) >> close chan
where
chan = open path
loop chan =
try yield (input_line chan)
with End_of_file -> empty
end
-- Using the syntax of UNIX pipes.
-- By using the pipe operator, the transformations become clear and fimiliar
-- for those who use the UNIX shells.
-- The candidates for the operator are: `|`, `|>`, `=>`, `>>`, `->`, `>-`, `.`.
"hello" | length
fun professions people =
people
|> filter (p -> p.age > 18)
|> group by: (p -> p.age)
|> map (p -> p.profession)
|> to_set
sum_of_squared_odd_numbers upper =
[1 .. ]
| map (n -> n * n)
| take_while (n -> n < upper)
| filter is_odd
| reduce (+)
-- * --
"hello" |> length
professions_of_adults =
people |> filter (p -> p # age > 18) |> group by: #age |> map #profession
sum_of_squared_odd_numbers upper =
[1 .. ]
|> map (n -> n * n)
|> take_while (n -> n < upper)
|> filter is_odd
|> reduce (+)
-- * --
"hello" => length
professions_of_adults =
people => filter (p -> p # age > 18) => group by: #age => map #profession
sum_of_squared_odd_numbers upper =
[1 .. ]
=> map (n -> n * n)
=> take_while (n -> n < upper)
=> filter is_odd
=> reduce (+)
-- * --
"hello" >> length
professions_of_adults =
people >> filter (p -> p # age > 18) >> group by: #age >> map #profession
sum_of_squared_odd_numbers upper =
[1 .. ]
>> map (n -> n * n)
>> take_while (n -> n < upper)
>> filter is_odd
>> reduce (+)
-- * --
"hello" -> length
professions_of_adults =
people -> filter (p => p # age > 18) -> group by: #age -> map #profession
sum_of_squared_odd_numbers upper =
[1 .. ]
-> map (\n => n * n)
-> take_while (\n => n < upper)
-> filter is_odd
-> reduce (+)
-- * --
"hello" >- length
professions_of_adults =
people >- filter (p -> p # age > 18) >- group by: #age >- map #profession
sum_of_squared_odd_numbers upper =
[1 .. ]
>- map (n -> n * n)
>- take_while (n -> n < upper)
>- filter is_odd
>- reduce (+)
-- * --
"hello" . length
professions_of_adults =
people . filter (p -> p # age > 18) . group by: #age . map #profession
sum_of_squared_odd_numbers upper =
[1 .. ]
.map (\n -> n * n)
.take_while (\n -> n < upper)
.filter is_odd
.reduce (+)
--
-- Pattern Matching
--
def map f list {
loop acc = {
[] -> rev acc
[x & xs] -> loop xs [f x & acc]
}
loop [] list
}
--
-- ADTs
--
-- How would ADTs (union types) be declared?
union List a
Nil
Cons a (List a)
end
type List a =
| Nil
| Cons a (List a)
-- * --
-- One really anoying thing about the `|>` pipelines is the bad alignment if
-- all the arguments are function calls.
cmd "cat" ["/tmp/data.csv"]
>> cmd "cut" ["-d"; ","; "-f"; "2"]
>> cmd "head" []
-- A simple solution to this issue is to support an optional prefix version of `>>`.
>> cmd "cat" ["/tmp/data.csv"]
>> cmd "cut" ["-d"; ","; "-f"; "2"]
>> cmd "head" []