View Problem

Test if a condition holds for all items of a list

Given a list, test if a certain logical condition (i.e. predicate) holds for all items of the list.
DiskEdit
python 2.6
all(x > 1 for x in [2,3,4])
DiskEdit
erlang
Result = lists:all(Pred, List).
DiskEdit
clojure
(every? #(> % 1) [2 3 4])

Submit a new solution for python, csharp, erlang, or clojure
There are 9 other solutions in additional languages (cpp, fantom, fsharp, groovy ...)