Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Array
- def find
- for i in 0...size
- value = self[i]
- return value if yield(value)
- end
- return nil
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement