Ruby/Array/find all

Материал из Wiki.crossplatform.ru

(Различия между версиями)
Перейти к: навигация, поиск

Версия 17:10, 26 мая 2010

find_all with block logic

a = ["a", "b", "c", "d", "e", "f", "g", "h"]
p a.find_all { |x| x < "e" }       # => ["a", "b", "c", "d"]