コード例 #1
0
 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);
コード例 #2
0
 public static ILeoValueRuleBuilder <T, TItem[]> NotAny <T, TItem>(this ILeoValueRuleBuilder <T, TItem[]> builder, Func <TItem, bool> func)
 => builder.All(func);