module Daitai::Concat

Public Instance Methods

concat() click to toggle source
# File lib/daitai/functions/concat.rb, line 5
def concat
  lambda do |x, y|
    x + y
  end.curry
end