[#74190] [Ruby trunk Feature#12134] Comparison between `true` and `false` — duerst@...
SXNzdWUgIzEyMTM0IGhhcyBiZWVuIHVwZGF0ZWQgYnkgTWFydGluIETDvHJzdC4KCgpUc3V5b3No
3 messages
2016/03/07
[#74269] Type systems for Ruby — Rob Blanco <ml@...>
Dear ruby-core,
5 messages
2016/03/10
[#74395] [Ruby trunk Feature#12142] Hash tables with open addressing — shyouhei@...
Issue #12142 has been updated by Shyouhei Urabe.
3 messages
2016/03/17
[ruby-core:74401] [Ruby trunk Feature#12094] parameterized property assignment: o.prop(arg) = 1
From:
shyouhei@...
Date:
2016-03-17 07:05:03 UTC
List:
ruby-core #74401
Issue #12094 has been updated by Shyouhei Urabe.
I met nobu so I asked its status. He told me that this proposed syntax conflicted catastrophically with existing grammars when he tried this last time.
He said he'll try again.
----------------------------------------
Feature #12094: parameterized property assignment: o.prop(arg) = 1
https://bugs.ruby-lang.org/issues/12094#change-57525
* Author: bug hit
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
```ruby
module Mod
@foo = {}
def self.foo(k)
@foo[k]
end
def self.foo=(k, v)
@foo[k] = v
end
end
Mod1.foo(:key1) ||= 'val1'
```
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:[email protected]?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>