method
select
Ruby latest stable (v1_8_7_72)
-
0 notes -
Class: Enumerable
select()
public
Returns an array containing all elements of enum for which block is not false (see also Enumerable#reject).
(1..10).find_all {|i| i % 3 == 0 } #=> [3, 6, 9]

