[#67346] Future of test suites for Ruby — Charles Oliver Nutter <headius@...>

I'll try to be brief so we can discuss all this. tl;dr: RubySpec is

19 messages 2015/01/05

[ruby-core:67503] [ruby-trunk - Feature #10729] [Open] Array method to subtract in place

From: sawadatsuyoshi@...
Date: 2015-01-10 22:36:02 UTC
List: ruby-core #67503
Issue #10729 has been reported by Tsuyoshi Sawada.

----------------------------------------
Feature #10729: Array method to subtract in place
https://bugs.ruby-lang.org/issues/10729

* Author: Tsuyoshi Sawada
* Status: Open
* Priority: Normal
* Assignee: 
* Category: 
* Target version: 
----------------------------------------
I request a method on array that takes another array, subtract that from self in place (= destructively), and return the subtracted elements:

    a = [1, 2, 3, 4, 5]
    a.some_method([2, 4, 6]) #=> [2, 4]
    a #=> [1, 3, 5]

Ideally, it should also allow a block:

    a = [1, 2, 3, 4, 5]
    a.some_method(&:even?) #=> [2, 4]
    a #=> [1, 3, 5]

This operation is quite frequent, but at the moment, it requires several steps to do.



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

In This Thread

Prev Next