bugfixes; tap. v0.1.4
This commit is contained in:
parent
29e7a0e4e2
commit
53033b8cdd
|
@ -47,6 +47,7 @@ class Counter
|
||||||
end
|
end
|
||||||
|
|
||||||
class Functional
|
class Functional
|
||||||
|
def self.__version__() '0.1.4' end
|
||||||
include Enumerable
|
include Enumerable
|
||||||
|
|
||||||
class DEFAULT
|
class DEFAULT
|
||||||
|
@ -161,6 +162,11 @@ class Functional
|
||||||
end
|
end
|
||||||
|
|
||||||
class Each <Base
|
class Each <Base
|
||||||
|
def each_fun *a
|
||||||
|
@exe.call *a
|
||||||
|
end
|
||||||
|
alias call each_fun
|
||||||
|
|
||||||
def end
|
def end
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
@ -213,25 +219,42 @@ class Functional
|
||||||
super *a, &exe
|
super *a, &exe
|
||||||
iv = Array.method :new if ::Functional::DEFAULT == iv
|
iv = Array.method :new if ::Functional::DEFAULT == iv
|
||||||
@buf = if iv.kind_of?( ::Proc) || iv.kind_of?( ::Method)
|
@buf = if iv.kind_of?( ::Proc) || iv.kind_of?( ::Method)
|
||||||
p default: :proc, iv: iv
|
|
||||||
Hash.new {|h,k| h[k] = iv.call }
|
Hash.new {|h,k| h[k] = iv.call }
|
||||||
else
|
else
|
||||||
p default: :value, iv: iv
|
|
||||||
{}.tap {|h| h.default = iv }
|
{}.tap {|h| h.default = iv }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def reduce_fun *a
|
def reduce_fun k, *a
|
||||||
@buf[ a[0]] = @exe.call @buf[ a[0]], *a[1..-1]
|
@buf[ k] = @exe.call k, @buf[ k], *a
|
||||||
end
|
end
|
||||||
alias call reduce_fun
|
alias call reduce_fun
|
||||||
|
|
||||||
def end
|
def end
|
||||||
@buf.each {|i| @next.call *i}
|
@buf.each &@next.method( :call)
|
||||||
@next.end
|
@next.end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class ToHash <Base
|
||||||
|
def initialize
|
||||||
|
super
|
||||||
|
@buf = {}
|
||||||
|
end
|
||||||
|
|
||||||
|
def to_hash_fun k, *a
|
||||||
|
@buf[k] = a
|
||||||
|
end
|
||||||
|
alias call to_hash_fun
|
||||||
|
|
||||||
|
def end
|
||||||
|
@buf
|
||||||
|
end
|
||||||
|
|
||||||
|
def clean
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
class Slice <Base
|
class Slice <Base
|
||||||
def initialize n
|
def initialize n
|
||||||
@buf, @n = [], n
|
@buf, @n = [], n
|
||||||
|
@ -343,6 +366,7 @@ class Functional
|
||||||
def filter &exe
|
def filter &exe
|
||||||
push Filter.new( &exe)
|
push Filter.new( &exe)
|
||||||
end
|
end
|
||||||
|
alias reject filter
|
||||||
|
|
||||||
def compact
|
def compact
|
||||||
push Compact.new
|
push Compact.new
|
||||||
|
@ -362,8 +386,12 @@ class Functional
|
||||||
|
|
||||||
def each &exe
|
def each &exe
|
||||||
return self unless exe
|
return self unless exe
|
||||||
push Each.new
|
push Each.new( &exe)
|
||||||
push exe
|
run
|
||||||
|
end
|
||||||
|
|
||||||
|
def to_hash
|
||||||
|
push ToHash.new
|
||||||
run
|
run
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -402,19 +430,21 @@ class Functional
|
||||||
def with_index &exe
|
def with_index &exe
|
||||||
i = 0
|
i = 0
|
||||||
exe ||= Array.method :[]
|
exe ||= Array.method :[]
|
||||||
push Collect.new {|*a| exe.call i, *a }
|
push Collect.new {|*a| exe.call i, *a; i += 1 }
|
||||||
end
|
end
|
||||||
|
|
||||||
def slice n, &e
|
def slice n, &exe
|
||||||
push Slice.new( n)
|
push Slice.new( n)
|
||||||
push Collect.new( &e) if e
|
block_given? ? self.collect( &exe) : self
|
||||||
self
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def cons n, &e
|
def cons n, &exe
|
||||||
push Cons.new( n)
|
push Cons.new( n)
|
||||||
push Collect.new( &e) if e
|
block_given? ? self.collect( &exe) : self
|
||||||
self
|
end
|
||||||
|
|
||||||
|
def tap &exe
|
||||||
|
push Tap.new( &exe)
|
||||||
end
|
end
|
||||||
|
|
||||||
class Save < Base
|
class Save < Base
|
||||||
|
|
Reference in a new issue