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