class Array
def process_and_interpose(initial, middle, last)
initial + (map { |i| yield i }).join(middle) + last
end
end
array.join
Post Revisions:
There are no revisions for this post.
class Array
def process_and_interpose(initial, middle, last)
initial + (map { |i| yield i }).join(middle) + last
end
end
There are no revisions for this post.