From: nobu@... Date: 2014-07-11T08:03:13+00:00 Subject: [ruby-core:63659] [ruby-trunk - Feature #8895] Destructuring Assignment for Hash Issue #8895 has been updated by Nobuyoshi Nakada. Related to Bug #10028: nested rest keyword argument added ---------------------------------------- Feature #8895: Destructuring Assignment for Hash https://bugs.ruby-lang.org/issues/8895#change-47709 * Author: Jack Chen * Status: Open * Priority: Normal * Assignee: * Category: * Target version: ---------------------------------------- Given Ruby already supports destructuring assignment with Array (a, b = [1, 2]), I propose destructuring assignments for Hash. Basic example ------------- ```ruby params = {name: "John Smith", age: 42} {name: name, age: age} = params # name == "John Smith" # age == 42 ``` This would replace a common pattern of assigning hash values to local variables to work with. General syntax -------------- ```ruby { => , ��� } = # Symbols { foo: bar } = { foo: "bar" } bar == "bar" # Potential shorthand { foo } = { foo: "bar" } foo == "bar" ``` Use cases --------- ```ruby # MatchData { username: username, age: age } = "user:jsmith age:42".match(/user:(?\w+) age:(?\d+)/) username == "jsmith" age == "42" ``` Edge cases ---------- ```ruby # Variable being assigned to more than once should use the last one { foo: var, bar: var } = {foo: 1, bar: 2} var == 2 ``` Thoughts? -- https://bugs.ruby-lang.org/