9 10 11
# File 'lib/funkify.rb', line 9 def *(other) Funkify.compose(self, other) end
17 18 19
# File 'lib/funkify.rb', line 17 def >=(other) other.(*self.()) end
13 14 15
# File 'lib/funkify.rb', line 13 def |(other) Funkify.compose(other, self) end