Skip to content

Instantly share code, notes, and snippets.

@mehdi-farsi
Created August 24, 2018 14:01
Show Gist options
  • Save mehdi-farsi/17d73451ee151967a863c5825174be92 to your computer and use it in GitHub Desktop.
Save mehdi-farsi/17d73451ee151967a863c5825174be92 to your computer and use it in GitHub Desktop.
class Array
def my_map
ary = []
self.each do |elem|
ary << yield(elem)
end
ary
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment