module Augmented::Procs::Chainable

Public Instance Methods

|(other) click to toggle source
# File lib/augmented/procs/chainable.rb, line 6
def | other
  -> *args { other.to_proc.call self.call(*args) }
end