Sha256: ad34464a30e3808a0aebef93669323a100f5ea931239492dd5367760e0bcb1ef
Contents?: true
Size: 267 Bytes
Versions: 10
Compression:
Stored size: 267 Bytes
Contents
class Method def to_proc m = self lambda { |*args, &b| m.call(*args, &b) } end def <<(other) ->(*args, &block) { call(other.call(*args, &block)) } end def >>(other) ->(*args, &block) { other.call(call(*args, &block)) } end end
Version data entries
10 entries across 10 versions & 1 rubygems