[#79532] Immutable Strings vs Symbols — Daniel Ferreira <subtileos@...>

Hi,

15 messages 2017/02/15

[ruby-core:79520] [Ruby trunk Feature#13211] Hash#delete taking a splat

From: kevin.deisz@...
Date: 2017-02-13 16:38:35 UTC
List: ruby-core #79520
Issue #13211 has been reported by Kevin Deisz.

----------------------------------------
Feature #13211: Hash#delete taking a splat
https://bugs.ruby-lang.org/issues/13211

* Author: Kevin Deisz
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Hi there,

I would like to add the ability for Hash#delete to take a splat of arguments that would delete entries at each of the given keys. I've run into this quite a few times where it would be useful in application code. Something like

```
def preprocess(args = {})
  do_some_preprocessing(%i[a b c].zip(args.delete(:a, :b, :c)).to_h)
  process(args)
end
```

Would be very happy to work on a patch for this if it's desired.



-- 
https://bugs.ruby-lang.org/

Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>

In This Thread

Prev Next