functions 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/functions/prelude_lambda/basic.rb +6 -2
- data/lib/functions/prelude_lambda/ext.rb +3 -3
- data/lib/functions/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjNiMzhiYWU2ZWZiMTFlMzY2MWFhZmI3ZDU1NWYzNmI4NDUxM2IxOA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YjNiYTg3MTUxODAwYTIxNjZlNDJhMTkzZDFhYTM5YTY3NTU1MzdmZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTljMTAwOTQzMGVhYTFhZmNhN2Q0ODQ3YTU2ZmVkNDNiMDNmZGQwMDBmMjUz
|
10
|
+
ZGQ0MDg0MWVjYzMxMmVkNDY5ZThlMzhjYzM5NmJjOWJjZTZmYWY5M2Y5ZmVh
|
11
|
+
Y2Y2ZmEwMWU3NjU0NjBmZTRhMDRiNjlkOTNlNzlkNDNmYzExNjc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZWJlZWQwZDUwZjgyMWEzYTNlNGU5NzFkNmQ2OTUwMGNmMmQyZmM4OTYyMDI0
|
14
|
+
NjdhNDczOGNmMTRmZmZlNTU2ZGZjMzIzZDIzZDI1MjMyOTU3MTE1YmEzZjI0
|
15
|
+
ZjU0NTQyY2NmNWUyMDk4NDBjZWE5NzE1ZDYwZTZlZGQ4ZjMxYTk=
|
@@ -81,6 +81,10 @@ module Functions
|
|
81
81
|
|
82
82
|
Zip = ->(a, b) { a.zip(b) }.curry
|
83
83
|
|
84
|
+
Zip_Hash_Left = ->(as, bs) { as.merge(bs) { |k, a, b| [a, b] } }.curry
|
85
|
+
|
86
|
+
Zip_Hash = ->(as, bs) { as.each_with_object({}) { |(k, a), h| h[k] = [a, bs[k]]; h } }.curry
|
87
|
+
|
84
88
|
Map = ->(f, a) { a.map { |x| f.(x) } }.curry
|
85
89
|
|
86
90
|
Map_Hash = ->(f, h) { Hash[h.map{|k, v| [k, f.(v)] }] }.curry
|
@@ -93,9 +97,9 @@ module Functions
|
|
93
97
|
|
94
98
|
Intersect = ->(as) { as.inject(:&) }
|
95
99
|
|
96
|
-
Group = ->(f,a) { a.group_by(&f) }.curry
|
100
|
+
Group = ->(f,a) { a.group_by(&f) }.curry
|
97
101
|
|
98
|
-
Partition = ->(f) { Group.(f) > Send.(:values) }
|
102
|
+
Partition = ->(f) { Group.(f) > Send.(:values) }
|
99
103
|
|
100
104
|
FromTo = ->(from) { ->(to) { Range.new(from, to) } }
|
101
105
|
|
@@ -16,17 +16,17 @@ class Proc
|
|
16
16
|
# Composition of Procs (functions): (f+g)(x) = f(g(x))
|
17
17
|
def +(g)
|
18
18
|
# Prelude::Compose.(self,g)
|
19
|
-
->(x) { self.(g.(x)) }
|
19
|
+
->(*x) { self.(g.(*x)) }
|
20
20
|
end
|
21
21
|
# Composition of Procs (functions): (f<g)(x) = f(g(x))
|
22
22
|
def <(g)
|
23
23
|
# Prelude::Compose.(self,g)
|
24
|
-
->(x) { self.(g.(x)) }
|
24
|
+
->(*x) { self.(g.(*x)) }
|
25
25
|
end
|
26
26
|
# Composition of Procs (functions): (f>g)(x) = g(f(x))
|
27
27
|
def >(g)
|
28
28
|
# Prelude::After.(self,g)
|
29
|
-
->(x) { g.(self.(x)) }
|
29
|
+
->(*x) { g.(self.(*x)) }
|
30
30
|
end
|
31
31
|
# Partial evaluation of a Proc (function)
|
32
32
|
def partial(a)
|
data/lib/functions/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: functions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Koen Handekyn
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-10-
|
11
|
+
date: 2013-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: functional programming in ruby
|
14
14
|
email:
|