Esempio n. 1
0
 public static ILeoValueRuleBuilder <T, TVal> NotAll <T, TVal, TItem>(this ILeoValueRuleBuilder <T, TVal> builder, Func <TItem, bool> func)
     where TVal : ICollection <TItem>
 => builder.Any(func);
Esempio n. 2
0
 public static ILeoValueRuleBuilder <T, TItem[]> NotAll <T, TItem>(this ILeoValueRuleBuilder <T, TItem[]> builder, Func <TItem, bool> func)
 => builder.Any(func);