Skip to content

Instantly share code, notes, and snippets.

@leandroh
Forked from svenfuchs/return.rb
Created June 19, 2009 02:05
Show Gist options
  • Save leandroh/132356 to your computer and use it in GitHub Desktop.
Save leandroh/132356 to your computer and use it in GitHub Desktop.
module Enumerable
def return(*)
if block_given?
each do |i|
value = yield(i)
return value if value
end
nil
else
super
end
end
end
h = {0 => 'a', 2 => 'b'}
[1,2,3].return {|x| h[x]} # => b
[4,5,6].return {|x| h[x]} # => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment