Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Ruby | Enumerable | min

概要

Enumerable#min

詳細

Enumerable#min <=>メソッドを利用して最小値を返します。
ブロックを指定した場合は、ブロックの評価結果で判定を行います。

サンプル

コード
# encoding: utf-8
class Person
  include Enumerable
  attr_accessor :name, :age
  def initialize(name, age)
    @name, @age = name, age
  end

  def <=>(other)
    self.name <=> other.name
  end
end

persons = [Person.new("tanaka", 20), Person.new("sato", 55), Person.new("suzuki", 77)]

p persons
p persons.min
p persons.min {|one, other|one.age <=> other.age}
出力
[#<Person:0x2696088 @name="tanaka", @age=20>, #<Person:0x2696040 @name="sato", @age=55>, #<Person:0x2695ff8 @name="suzuki", @age=77>]
#<Person:0x2696040 @name="sato", @age=55>
#<Person:0x2696088 @name="tanaka", @age=20>