Sha256: a8789b37484846eb9daa91fa716968a4ce642744ecbf296ded490aaffdef180c
Contents?: true
Size: 320 Bytes
Versions: 73
Compression:
Stored size: 320 Bytes
Contents
unless Enumerable.method_defined? :reverse_each require 'enumerator' module Enumerable def reverse_each return to_enum(:reverse_each) unless block_given? # There is no other way then to convert to an array first... see 1.9's source. to_a.reverse_each{|e| yield e} self end end end
Version data entries
73 entries across 73 versions & 5 rubygems