Tbpgr Blog

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

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

Ruby | Enumerable | find_all

概要 Enumerable#find_all 詳細 Enumerable#find_all 評価が真になるブロックすべてを返却する サンプル コード # encoding: utf-8 require "pp" class Array def first_fizze self.find_all {|i|i % 3 == 0} end def first_buzz self.find_all {|i|i % 5 ==…