Created
December 28, 2011 17:26
-
-
Save caius/1528785 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def output name=((default=true); "caius") | |
puts "name: #{name.inspect}" | |
puts "default: #{default.inspect}" | |
end | |
output | |
# >> name: "caius" | |
# >> default: true | |
output "avdi" | |
# >> name: "avdi" | |
# >> default: nil |
Wow, really interesting. Never thought about this use case, but kind of makes sense.
Holy crap, look at all the forks! You've created a monster!
The only use case I can think of is lulz. I'd never let this through a code review.
@avdi :) I was scratching if I would ever end up using this trick...
also
def x(y=(raise 'i <3 params')); y; end
Don't forget:
def foo(something = (def foo(*); 'bar'; end)) 'qux' end
puts foo(10) # qux
puts foo # qux
puts foo(10) # bar
puts foo # bar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I love it too, because I can understand how ruby evaluates it (I think.) The default argument is evaluated as ruby, but in the same scope as the method, so setting local variables means they're set for the method as well. And the parenthesis make it one expression, which ruby is fine with. And then it uses the return value of that expression for the default value of the
name
variable.