Returns 'true' if at least one of the 'l' list's elements satisfies the condition 'f'.
Example of use: List.Exists (["a", "b", "abc", "d", "e"], fun (x) { x.Length > 2 }) evaluates to 'true' as there is one string of length 3 on the list.
list Class | Nemerle.Core Namespace