Nemerle Documentation

list.Exists Method 

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

public bool Exists(
   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.Core Namespace