module ArrayUtils

Public Instance Methods

concat() click to toggle source
concat
a

-> [a] -> [a]

# File lib/fubby/array_utils.rb, line 3
def concat
  ->(a1, a2) { a1 + a2 }
end