[#69084] [Ruby trunk - Feature #11124] [Open] [PATCH] lib/*: use monotonic clock for timeouts — normalperson@...
Issue #11124 has been reported by Eric Wong.
5 messages
2015/05/06
[#69138] [Ruby trunk - Feature #11136] [PATCH] webrick: avoid fcntl module — nobu@...
Issue #11136 has been updated by Nobuyoshi Nakada.
3 messages
2015/05/12
[#69160] [Ruby trunk - Feature #11146] [PATCH] variable.c: initialize generic_iv_tbl at start — nobu@...
Issue #11146 has been updated by Nobuyoshi Nakada.
4 messages
2015/05/13
[#69175] Re: [Ruby trunk - Feature #11146] [PATCH] variable.c: initialize generic_iv_tbl at start
— Eric Wong <normalperson@...>
2015/05/13
nobu@ruby-lang.org wrote:
[ruby-core:69137] [Ruby trunk - Feature #11141] [Rejected] new syntax suggestion for abbreviate definition on block parameters in order
From:
matz@...
Date:
2015-05-12 01:31:56 UTC
List:
ruby-core #69137
Issue #11141 has been updated by Yukihiro Matsumoto.
Status changed from Open to Rejected
We cannot use $1 etc. as they are already taken for Regexp match.
Short hand notation for block parameter itself is a nice idea though.
Matz.
----------------------------------------
Feature #11141: new syntax suggestion for abbreviate definition on block parameters in order
https://bugs.ruby-lang.org/issues/11141#change-52385
* Author: Arnold Roa
* Status: Rejected
* Priority: Normal
* Assignee: ruby-core
----------------------------------------
One of the most commons things I do in Ruby are small block definitions:
~~~
x.each{|a| a}
~~~
One useful syntax introduced was the **&:method** that allows calling a method on a block if only one param is expected. It's a shorcut for** a.each{|x|x.method}**. I think it would be nice if Ruby had a syntax that allows me to not define the params that block would receive, but instead access them in order. For example:
~~~
x.each { $1 }
~~~
Let's suppose the block is waiting for two params, I normally do:
~~~
x.method {|a,b| a - b }
~~~
This syntax will allow us to use:
~~~
x.method{ $1 - $2 }
~~~
So:
~~~
x.each { p1.stg }
x.each {|p1| p1.stg}
x.each &:stg
~~~
would be the same.
Please consider $1 and $2 just as an example. I don't like the fact that they are global variables. It could be _1 or p1, for example:
~~~
x.method{ p1 - p2 }
x.each{ p1 - p2 } == x.each {|p1, p2| p1 - p2 }
~~~
Or, as blocks already uses **&:method** it could be ** &:1**. Or any other thing that you may consider more appropriated.
I think this syntax would be very nice for short block definitions, the downside is that it allows for bad practice on longer methods, but in the end, that's a decision that a programer should make.
Maybe this is not a valid reason, but I would like to point out that Regex is actually creating global vars as the results of match: $x vars. (for perl's historical reasons)
So why not introduce this into Ruby's syntax?
Personally I don't like either $1 nor p1. They are just the first quick things that come to my mind.
--
https://bugs.ruby-lang.org/