Sha256: 1b0a725b61923341365968a28f4458ad0a55e6728d28b3e9a5d965bd20c3d59e

Contents?: true

Size: 473 Bytes

Versions: 47

Compression:

Stored size: 473 Bytes

Contents

unless ([1].index{true} rescue false)
  require 'backports/tools/alias_method_chain'
  require 'enumerator'

  class Array
    def index_with_block(*arg)
      return to_enum(:index_with_block) if arg.empty? && !block_given?
      return index_without_block(*arg) unless block_given? && arg.empty?
      each_with_index{|o,i| return i if yield o}
      return nil
    end
    Backports.alias_method_chain self, :index, :block
    alias_method :find_index, :index
  end
end

Version data entries

47 entries across 47 versions & 4 rubygems

Version Path
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/backports-3.15.0/lib/backports/1.8.7/array/index.rb
backports-3.15.0 lib/backports/1.8.7/array/index.rb
backports-3.14.0 lib/backports/1.8.7/array/index.rb
backports-3.13.0 lib/backports/1.8.7/array/index.rb
backports-3.12.0 lib/backports/1.8.7/array/index.rb
backports-3.11.4 lib/backports/1.8.7/array/index.rb
backports-3.11.3 lib/backports/1.8.7/array/index.rb
backports-3.11.2 lib/backports/1.8.7/array/index.rb
backports-3.11.1 lib/backports/1.8.7/array/index.rb
backports-3.11.0 lib/backports/1.8.7/array/index.rb
backports-3.10.3 lib/backports/1.8.7/array/index.rb
backports-3.10.2 lib/backports/1.8.7/array/index.rb
backports-3.10.1 lib/backports/1.8.7/array/index.rb
backports-3.10.0 lib/backports/1.8.7/array/index.rb
backports-3.9.1 lib/backports/1.8.7/array/index.rb
backports-3.9.0 lib/backports/1.8.7/array/index.rb
backports-3.8.0 lib/backports/1.8.7/array/index.rb
backports-3.7.0 lib/backports/1.8.7/array/index.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/backports-3.6.8/lib/backports/1.8.7/array/index.rb
backports-3.6.8 lib/backports/1.8.7/array/index.rb