Conditionals Other use of blocks as conditionals result = ary.select{|x| x%2==0} result = ary.detect{|x| x%2==0} result = ary.reject{|x| x%2==0} The names are inherited from Smalltalk