ActionsLike0
Feature #6414
closedDestructuring Assignment
Status:
Closed
Assignee:
-
Target version:
-
Description
I mean:
john = {name: "John", last: "Smith"}
{name, last} = john # extract value by key from the hash and set to local variable with same name
name # => "John"
last # -> "Smith"
Useful for ex. for "options" hashes:
def select(options={})
{only, except} = options
...
end
As extra part of this feature can be hash constructing in this way:
name = "John"
last = "Smith"
find({name, last}) # equals to => find({name: "John", last: "Smith"})
I think both really nice to have in Ruby.
Thanks.
Files
Updated by mame (Yusuke Endoh) almost 13 years ago
- Status changed from Open to Assigned
- Assignee set to matz (Yukihiro Matsumoto)
Updated by marcandre (Marc-Andre Lafortune) almost 13 years ago
- File destructuring.pdf destructuring.pdf added
- Category set to core
- Target version set to 2.0.0
Updated by shyouhei (Shyouhei Urabe) over 12 years ago
- Status changed from Assigned to Feedback
- Assignee deleted (
matz (Yukihiro Matsumoto))
Updated by yhara (Yutaka HARA) over 12 years ago
- Target version changed from 2.0.0 to 3.0
Updated by yhara (Yutaka HARA) over 12 years ago
- Target version changed from 3.0 to 2.6
Updated by jeremyevans0 (Jeremy Evans) over 3 years ago
- Status changed from Feedback to Closed
Updated by jeremyevans0 (Jeremy Evans) over 3 years ago
- Has duplicate Feature #8895: Destructuring Assignment for Hash added
ActionsLike0