Sha256: 2fa5f2d6923f3eeb28c339892b96d9b0be18c37b4580b6e188e05ff2034dab17

Contents?: true

Size: 396 Bytes

Versions: 73

Compression:

Stored size: 396 Bytes

Contents

unless Object.const_defined? :Enumerator
  require 'enumerator'
  unless Enumerable::Enumerator.method_defined? :with_index
    class Enumerable::Enumerator
      def with_index(offset = 0)
        return to_enum(:with_index, offset) unless block_given?
        each do |*args|
          yield args.size == 1 ? args[0] : args, offset
          offset += 1
        end
      end
    end
  end
end

Version data entries

73 entries across 73 versions & 5 rubygems

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