Sha256: cbf9f6b962eb0bb6bcfd042d078f4d5e38cdabf03a69882559f805a13bfc380c
Contents?: true
Size: 433 Bytes
Versions: 26
Compression:
Stored size: 433 Bytes
Contents
if Enumerable.instance_method(:each_with_index).arity.zero? require 'backports/tools' 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
26 entries across 26 versions & 2 rubygems