Nemerle Documentation

List.Exists Method 

Returns 'true' if at least one of the 'l' list's elements satisfies the condition 'f'.

public static bool Exists(
   list l,
   Func1 f
);

Remarks

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.

See Also

List Class | Nemerle.Collections Namespace