method
minmax
Ruby latest stable (v1_9_3_392)
-
0 notes -
Class: Enumerable
minmax()
public
Returns two elements array which contains the minimum and the maximum value in the enumerable. The first form assumes all objects implement Comparable; the second uses the block to return a <=> b.
a = %w(albatross dog horse) a.minmax #=> ["albatross", "horse"] a.minmax {|a,b| a.length <=> b.length } #=> ["dog", "albatross"]


