module Tins::ProcCompose

Public Instance Methods

*(other) click to toggle source
Alias for: compose
compose(other) click to toggle source
# File lib/tins/proc_compose.rb, line 3
def compose(other)
  self.class.new { |*args| call(*other.call(*args)) }
end
Also aliased as: *