Sha256: 7da0bd4acf005008fa6f0c69994ca27815003dcc31a90d38c2443041d4b01e0c

Contents?: true

Size: 621 Bytes

Versions: 4

Compression:

Stored size: 621 Bytes

Contents

# from Rails 6.0 activesupport.  Remove once defined by Opal activesupport
class Array
  # Removes and returns the elements for which the block returns a true value.
  # If no block is given, an Enumerator is returned instead.
  #
  #   numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  #   odd_numbers = numbers.extract! { |number| number.odd? } # => [1, 3, 5, 7, 9]
  #   numbers # => [0, 2, 4, 6, 8]
  def extract!
    return to_enum(:extract!) { size } unless block_given?

    extracted_elements = []

    reject! do |element|
      extracted_elements << element if yield(element)
    end

    extracted_elements
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hyper-component-1.0.alpha1.8 lib/hyperstack/ext/component/array.rb
hyper-component-1.0.alpha1.7 lib/hyperstack/ext/component/array.rb
hyper-component-1.0.alpha1.6 lib/hyperstack/ext/component/array.rb
hyper-component-1.0.alpha1.5 lib/hyperstack/ext/component/array.rb