Returns 'true' if all of the 'l' list's elements satisfy the condition 'f'.
Example of use: List.ForAll ([2, 4, 6, 8], fun (x) { x % 2 == 0 }) evaluates to 'true' as all the list's elements are even.
List Class | Nemerle.Collections Namespace