class Proc
Public Instance Methods
*(other)
click to toggle source
# File lib/funkify.rb, line 9 def *(other) Funkify.compose(self, other) end
>=(other)
click to toggle source
# File lib/funkify.rb, line 17 def >=(other) other.(*self.()) end
|(other)
click to toggle source
# File lib/funkify.rb, line 13 def |(other) Funkify.compose(other, self) end