[#82706] [Ruby trunk Bug#13851] getting "can't modify string; temporarily locked" on non-frozen instances — cardoso_tiago@...
Issue #13851 has been updated by chucke (Tiago Cardoso).
3 messages
2017/09/07
[#82853] [Ruby trunk Bug#13916] Race condition when sending a signal to a new fork — russell.davis@...
Issue #13916 has been reported by russelldavis (Russell Davis).
3 messages
2017/09/19
[#82892] [Ruby trunk Bug#13921] buffered read_nonblock doesn't work as expected using SSLSocket — cardoso_tiago@...
Issue #13921 has been updated by chucke (Tiago Cardoso).
3 messages
2017/09/20
[ruby-core:83045] [Ruby trunk Feature#12125] Proposal: Shorthand operator for Object#method
From:
nobu@...
Date:
2017-09-28 13:32:18 UTC
List:
ruby-core #83045
Issue #12125 has been updated by nobu (Nobuyoshi Nakada).
`File[&:basename]` and `File.&basename` are valid syntax already.
----------------------------------------
Feature #12125: Proposal: Shorthand operator for Object#method
https://bugs.ruby-lang.org/issues/12125#change-66967
* Author: Papierkorb (Stefan Merettig)
* Status: Open
* Priority: Normal
* Assignee:
* Target version:
----------------------------------------
Hello,
The `&` operator lets one pass a `#call`-able object as block.
Really useful feature, but at the moment, if you want to pass a `Method` this way the syntax is not really concise:
```ruby
Dir["*/*.c"].map(&File.method(:basename))
```
More often than not, at least I end up writing this instead `.map{|a| File.basename a}` which isn't that great either.
Thus, I want to propose adding a short-hand operator to the ruby language, which simply calls `#method` on an `Object`.
It could look like this: `an_object->the_method` which is 100% equivalent to doing `an_object.method(:the_method)`
I'm reusing the `->` operator which is already used for the stabby lambda. But I think it makes sense: You have an object,
and from that object you point at a method to get it as `Method`.
With this, the example from above becomes: `Dir["*/*.c"].map(&File->basename)`
I attached a proof of concept patch. When you apply this to trunk, you can try the example above yourself.
Do note however that this PoC also breaks stabby lambda for the moment. I'll work on fixing that the following
days.
Thank you for reading,
Stefan.
---Files--------------------------------
method_shorthand.diff (740 Bytes)
dot-symbol.patch (554 Bytes)
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:[email protected]?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>