class Proc

Public Instance Methods

+@() click to toggle source
# File lib/expendables/proc.rb, line 7
def +@
  self
end
>>(o)
Alias for: compose
compose(o) click to toggle source
# File lib/expendables/proc.rb, line 2
def compose o
  -> *args { (+o).call((+self).call(*args)) }
end
Also aliased as: >>