Given that the following currently works in Ruby like a very limited version of Haskell's constructor pattern matching:
[[1,[2,3]]].map {|(x, (y, z))| x + y * z} #=> [7]
I wonder if it also supports a syntax for "as-patterns" (what Haskell calls them), which is basically putting multiple bindings on the same arguments, like so:
[[1,[2,3]]].map {|(x, yz@(y, z))| [x + y * z, yz]} #=> [7, [2,3]]
I tried @
and other symbols, but they all resulted in syntax errors.
As far as I know, ruby does not currently (2018-06-04) have that feature.
There isn't a formal spec of the ruby language to refer to, but there is The Ruby Spec Suite. Check out language/block_spec.rb for some weird and unusual examples of block params.
Block arguments are surprisingly powerful, and support optional args, splats, post-args, destructuring, nested destructuring, keyword arguments, block-level variables. It's pretty impressive.
If you can read C (I can't) and you really want to dig into this further, you can find the definition of block arguments in the interpreter grammar at parse.y:2980.