From: kevin.deisz@... Date: 2017-02-13T16:38:35+00:00 Subject: [ruby-core:79520] [Ruby trunk Feature#13211] Hash#delete taking a splat 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: