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);
public static ILeoValueRuleBuilder <T, TItem[]> NotAll <T, TItem>(this ILeoValueRuleBuilder <T, TItem[]> builder, Func <TItem, bool> func) => builder.Any(func);