Example #1
0
 public static bool Any <T>(this IComposite <T> composite, Func <T, bool> predicate)
 {
     return(composite.PreOrdered().Any(predicate));
 }