Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
17
Task/Higher-order-functions/E/higher-order-functions.e
Normal file
17
Task/Higher-order-functions/E/higher-order-functions.e
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
def map(f, list) {
|
||||
var out := []
|
||||
for x in list {
|
||||
out with= f(x)
|
||||
}
|
||||
return out
|
||||
}
|
||||
|
||||
? map(fn x { x + x }, [1, "two"])
|
||||
# value: [2, "twotwo"]
|
||||
|
||||
? map(1.add, [5, 10, 20])
|
||||
# value: [6, 11, 21]
|
||||
|
||||
? def foo(x) { return -(x.size()) }
|
||||
> map(foo, ["", "a", "bc"])
|
||||
# value: [0, -1, -2]
|
||||
Loading…
Add table
Add a link
Reference in a new issue