From: usa@... Date: 2016-04-04T15:00:06+00:00 Subject: [ruby-core:74809] [Ruby trunk Feature#12247] accept multiple arguments at Array#delete Issue #12247 has been updated by Usaku NAKAMURA. Tsuyoshi Sawada wrote: > depending on the length of `array`, you get different types of results. It can be a gotcha. At first, I also think so, but nobu told me a precedent, `p`. In fact, compatibility and convenience would be more important than consistency. ---------------------------------------- Feature #12247: accept multiple arguments at Array#delete https://bugs.ruby-lang.org/issues/12247#change-57935 * 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: