File: rindex.rb

package info (click to toggle)
ruby-backports 3.25.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,912 kB
  • sloc: ruby: 11,759; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 456 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
unless ([1].rindex{true} rescue false)
  class Array
    require 'backports/tools/alias_method_chain'
    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