Sha256: 0c3bb8c333de78ecff27336de2c7fc378cb19b17eed7baad5cad561c0eda818d

Contents?: true

Size: 435 Bytes

Versions: 47

Compression:

Stored size: 435 Bytes

Contents

unless Enumerable.method_defined? :max_by
  require 'backports/tools/extreme_object'
  require 'enumerator'

  module Enumerable
    def max_by
      return to_enum(:max_by) unless block_given?
      max_object, max_result = nil, Backports::MOST_EXTREME_OBJECT_EVER
      each do |object|
        result = yield object
        max_object, max_result = object, result if max_result < result
      end
      max_object
    end
  end
end

Version data entries

47 entries across 47 versions & 4 rubygems

Version Path
backports-3.25.0 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.24.1 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.24.0 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.23.0 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.22.1 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.22.0 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.21.0 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.20.2 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.20.1 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.20.0 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.19.0 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.18.2 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.18.1 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.18.0 lib/backports/1.8.7/enumerable/max_by.rb
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/backports-3.12.0/lib/backports/1.8.7/enumerable/max_by.rb
backports-3.17.2 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.17.1 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.17.0 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.16.1 lib/backports/1.8.7/enumerable/max_by.rb
backports-3.16.0 lib/backports/1.8.7/enumerable/max_by.rb