From: shevegen@... Date: 2016-04-04T13:48:51+00:00 Subject: [ruby-core:74803] [Ruby trunk Feature#12247] accept multiple arguments at Array#delete Issue #12247 has been updated by Robert A. Heiler. I guess this is a simple change. I have nothing against it. As for the last question: ary = [1, 2, 3, 4, 5] ary.delete(1, 6) # => [1, nil] I guess that would be the most consistent behaviour since this is how it already behaves as-is. ---------------------------------------- Feature #12247: accept multiple arguments at Array#delete https://bugs.ruby-lang.org/issues/12247#change-57928 * Author: Usaku NAKAMURA * Status: Open * Priority: Normal * Assignee: ---------------------------------------- I found that it's very useful if `Array#delete` accepts multiple arguments. ```ruby ary = [1, 2, 3, 4, 5] ary.delete(1, 3) #=> [1, 3] ary #=> [2, 4, 5] ``` ---Files-------------------------------- delete_multi.patch (4.6 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: