method
max_by
v1_8_7_72 -
Show latest stable
- Class:
Enumerable
max_by()public
Returns the object in enum that gives the maximum value from the given block.
a = %w(albatross dog horse) a.max_by {|x| x.length } #=> "albatross"
max_by()Returns the object in enum that gives the maximum value from the given block.
a = %w(albatross dog horse) a.max_by {|x| x.length } #=> "albatross"