Tbpgr Blog

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

Functional Collection Patterns | Filter Pattern

概要

Filter Pattern

詳細

Collectionの各要素から条件に一致する要素のみを抽出する。
Rubyではselectが該当。

サンプル

# encoding: utf-8

list = [1, 2, 3, 4]
p list.select {|e|e.even?}

結果

[2, 4]