Guest User

Untitled

a guest
May 26th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. module Enumerable2
  2. def map2
  3. new_array = []
  4. each{|item| new_array << yield(item)}
  5. return new_array
  6. end
  7. end
  8.  
  9. class Array
  10. include Enumerable2
  11. end
Add Comment
Please, Sign In to add comment