-
Notifications
You must be signed in to change notification settings - Fork 1
/
functional.lua
313 lines (245 loc) · 6.09 KB
/
functional.lua
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
--[[
-- Module: functional.lua
-- Author: Jhonathan Paulo Banczek
-- Copyright: [email protected]
-- 15-09-2013
-- DESCRIPTION
Functional.lua is a module written in Lua which
implements some functional programming features
such as map, filter, reduce, any, all
(of Haskell and Python) with feature range and
rangerandom (inspired by Python) to generate lists
(without support list comprehensions), and replicate
to repeat elements of lists (itertools repeat the Python).
-- DEPENDENCIES
None.
--
--]]
---
-- FUNCTIONS | RETURN TYPE
-- | functional.map(f, ...) -> table
-- | functional.reduce(x[, op]) -> number
-- | functional.filter(f, x) -> table
-- | functional.range(from[, to, [step]] ) -> table
-- | functional.rangerandom(max[, m, [n]]) -> table
-- | functional.any(f, x) -> boolean
-- | functional.all(f, x) -> boolean
-- | functional.replicate(x,y) -> table
------------------------------------------------------
-- define local functions
local random = math.random
-- table that store functions module
local functional = {}
functional._TYPE = 'module'
functional._NAME = 'functional'
-- Function: Generate list of elements
-- range(from[, to[, step]])
--
-- Examples:
--
-- range(10) => {1,2,3,4,5,6,7,8,9,10}
-- range(2,5) => {2,3,4,5}
-- range(-2,4,2) => {-2,0,2,4}
--
-- param from: number
-- param to: number (optional)
-- param step: number (optional, default: 1)
-- return: table
--
function functional.range(from, to, step)
assert(from and type(from) == 'number')
local step = step or 1
if not to then
from, to = 1, from
end
assert(type(to) == 'number' and type(step) == 'number')
assert(from <= to)
local aux = {}
for i = from, to, step do table.insert(aux, i) end
return aux
end
-- Function: Generate list pseudo-random
-- rangerandom(max[, m,[ n]])
--
-- Examples:
-- rangerandom(2) => {0.039280343353413, 0.43763759659493}
-- rangerandom(5,-10,0) => {-9,0,-2,5,-3}
--
-- param max: number of elements
-- param m, n: interval of choice random [m, n](optional: default: [0.,1.])
-- return: table
--
function functional.rangerandom(max, m, n)
assert(max and type(max) == 'number')
assert(max > 0, 'Error in arguments: max < 0')
if not m or not n then
local aux = {}
for i = 1, max do table.insert(aux, random()) end
return aux
else
assert(type(m) == 'number' and type(n) == 'number')
assert(m <= n)
local aux = {}
for i = 1, max do table.insert(aux, random(m, n)) end
return aux
end
end
-- Function: Map: applies the function f on each table passed as argument
-- map( f, ...)
--
-- Example:
-- f = function(a,b) return a + b end
-- x, y = {2,4}, {2,4}
-- map(f,x,y) ==> table: {4,16}
--
-- param f: function
-- param ... : multiples parameters of lists(table)
-- return: table or nil
--
function functional.map(f, ...)
assert(f and ... and #... > 0 and type(f) == 'function')
local tabs = {...}
if type(tabs[1]) ~= 'table' then return nil end
for i = 1, #tabs do
if type(tabs[i]) ~= 'table' then return nil end
end
for i = 1, #tabs do
if #tabs[i] ~= #tabs[1] then return nil end
end
local aux = {}
for j = 1, #tabs[1] do
local aux2 = {}
for i = 1, #tabs do
table.insert(aux2,tabs[i][j])
end
table.insert(aux, f(table.unpack(aux2)))
end
return aux
end
-- Function: Reduce table according to the operation defined
-- reduce(x[, op])
--
-- Example:
-- reduce({2,4,6}}) => number: 12
-- reduce({2,4,6}, '*') => number: 48
--
-- param x: table
-- param op: string, operation mathematic: +,-,*,/,^ (default: +)
-- return: number
--
function functional.reduce(x, op)
assert(x and #x > 0)
local op = op or '+'
if not(op == '+' or op == '-' or op == '*') then
if not(op == '/' or op == '^') then
assert(nil)
end
end
local aux = x[1]
for i = 2, #x do
if op == '+' then
aux = aux + x[i]
elseif op == '-' then
aux = aux - x[i]
elseif op == '*' then
aux = aux * x[i]
elseif op == '/' then
if x[i] == 0 then
return 'inf' end
aux = aux / x[i]
elseif op == '^' then
aux = aux ^ x[i]
end
end
return aux
end
--
-- Function: filter, creates a list starting from x where x a for
-- each function f is true
-- filter(f, x)
--
-- Example:
-- f = function(a) if type(a) == 'number' then return true end return false end
-- filter(f, {'aa','bc',123, '1567', 5, 8, 0, 'a'}) -> {123, 5, 8, 0}
--
-- param: f: function
-- param: x: table
-- return: table
--
function functional.filter(f, x)
assert(f and x and #x > 0)
assert(type(f) == 'function')
local aux = {}
for i = 1, #x do
if f(x[i]) then table.insert(aux,x[i]) end
end
return aux
end
--
-- Function: Returns true if any element of x is true for the function f(x)
-- any(f, x)
--
-- Example:
-- function f(a) if type(a) == 'number' then return true end return false end
-- any(f, {2,3,4,5}) -> true
-- any(f, {2,3,4,'aba'}) - -> true
-- any(f, {'lol', 'test', '2'}) -> false
--
-- param f: function
-- param x: table
-- return: boolean
--
function functional.any(f, x)
assert(f and x and #x > 0)
assert(type(f) == 'function')
for i = 1, #x do
if f(x[i]) then return true end
end
return false
end
--
-- Function: Returns true if all element of x is true for the function f(x)
-- all(f, x)
--
-- Example:
-- function f(a) if type(a) == 'number' then return true end return false end
-- all(f, {2,3,4,5}) -> true
-- all(f, {2,3,4,'aba'}) - -> false
-- all(f, {'lol', 'test', '2'}) -> false
--
-- param f: function
-- param x: table
-- return: boolean
--
function functional.all(f, x)
assert(f and x and #x > 0)
assert(type(f) == 'function')
for i = 1, #x do
if not f(x[i]) then return false end
end
return true
end
--
-- Function: generates a list of elements x of y
-- replicate(x, y)
--
-- Example:
-- replicate('a',5) -> {'a', 'a', 'a', 'a'}
-- replicate({2}, 3) -> {{2}, {2}}
-- replicate(2, 4) -> {2, 2, 2, 2}
-- param x: number, string, table, function
-- param y: number > 0
-- return: table
--
function functional.replicate(x, y)
assert(x and y and y > 0)
assert(type(y) == 'number')
local aux = {}
for i = 1, y do
table.insert(aux, x)
end
return aux
end
-- return module
return functional
-- end