public static ILeoValueRuleBuilder <T, TVal> NotAny <T, TVal, TItem>(this ILeoValueRuleBuilder <T, TVal> builder, Func <TItem, bool> func) where TVal : ICollection <TItem> => builder.All(func);
public static ILeoValueRuleBuilder <T, TItem[]> NotAny <T, TItem>(this ILeoValueRuleBuilder <T, TItem[]> builder, Func <TItem, bool> func) => builder.All(func);