Tbpgr Blog

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

2013-12-16から1日間の記事一覧

Ruby | Enumerable | minmax_by

概要 Enumerable#minmax_by 詳細 Enumerable#minmax_by ブロックの評価結果で判定を行い最小値と最大値を返します サンプル コード # encoding: utf-8 class Person include Enumerable attr_accessor :name, :age def initialize(name, age) @name, @age = …

Ruby | Enumerable | minmax

概要 Enumerable#minmax 詳細 Enumerable#minmax メソッドを利用して最小値と最大値を返します。 ブロックを指定した場合は、ブロックの評価結果で判定を行います。 サンプル コード # encoding: utf-8 class Person include Enumerable attr_accessor :name…