Sha256: a396bbbd21b283ed49a1335af434c499ab87cf4c3fada86f39e39bfbca629eb4

Contents?: true

Size: 437 Bytes

Versions: 26

Compression:

Stored size: 437 Bytes

Contents

unless ([1].rindex{true} rescue false)
  class Array
    require 'backports/tools'
    require 'enumerator'

    def rindex_with_block(*arg)
      return to_enum(:rindex) if !block_given? && arg.empty?
      return rindex_without_block(*arg) unless block_given? && arg.empty?
      i = 0
      reverse_each{|o| i += 1; return size - i if yield o}
      return nil
    end
    Backports.alias_method_chain self, :rindex, :block
  end
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
backports-3.3.2 lib/backports/1.8.7/array/rindex.rb
backports-3.3.1 lib/backports/1.8.7/array/rindex.rb
backports-3.3.0 lib/backports/1.8.7/array/rindex.rb
backports-3.2.0 lib/backports/1.8.7/array/rindex.rb
backports-3.1.1 lib/backports/1.8.7/array/rindex.rb
backports-3.1.0 lib/backports/1.8.7/array/rindex.rb