Hacker News new | ask | show | jobs
by byroot 4218 days ago
> & is syntactic sugar for .to_proc, but only within function calls

It's not exactly that. & is the syntax to pass a variable as a block to a method. And ruby will implicitly call to_proc on the object it receive as a block.

I know it seems pedantic, but there is a difference.