Sha256: e83122bb4653671c3c49edeb5d630d07cae460426d14f6fdc3ce5f945ba833b1

Contents?: true

Size: 452 Bytes

Versions: 47

Compression:

Stored size: 452 Bytes

Contents

if Enumerable.instance_method(:each_with_index).arity.zero?
  require 'backports/tools/alias_method_chain'
  require 'enumerator'

  module Enumerable
    def each_with_index_with_optional_args_and_block(*args)
      return to_enum(:each_with_index, *args) unless block_given?
      idx = 0
      each(*args) { |o| yield(o, idx); idx += 1 }
      self
    end
    Backports.alias_method_chain self, :each_with_index, :optional_args_and_block
  end
end

Version data entries

47 entries across 47 versions & 4 rubygems

Version Path
backports-3.25.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.24.1 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.24.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.23.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.22.1 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.22.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.21.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.20.2 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.20.1 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.20.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.19.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.18.2 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.18.1 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.18.0 lib/backports/1.9.1/enumerable/each_with_index.rb
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/backports-3.12.0/lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.17.2 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.17.1 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.17.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.16.1 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.16.0 lib/backports/1.9.1/enumerable/each_with_index.rb