Project

General

Profile

ActionsLike0

Feature #6414

closed

Destructuring Assignment

Added by edtsech (Edward Tsech) almost 13 years ago. Updated over 3 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:44951]

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

destructuring.pdf (128 KB) destructuring.pdf marcandre (Marc-Andre Lafortune), 07/01/2012 06:26 AM

Related issues 2 (0 open2 closed)

Related to Ruby - Feature #5474: keyword argumentClosedmame (Yusuke Endoh)10/23/2011Actions
Has duplicate Ruby - Feature #8895: Destructuring Assignment for HashClosedActions

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

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
#14

Updated by naruse (Yui NARUSE) over 7 years ago

  • Target version deleted (2.6)

Updated by jeremyevans0 (Jeremy Evans) over 3 years ago

  • Status changed from Feedback to Closed
#16

Updated by jeremyevans0 (Jeremy Evans) over 3 years ago

  • Has duplicate Feature #8895: Destructuring Assignment for Hash added
ActionsLike0

Also available in: Atom PDF