コード例 #1
0
ファイル: Set.cs プロジェクト: triattwobulls/language-ext
 public static bool exists <T>(Set <T> set, Func <T, bool> pred) =>
 set.Exists(pred);
コード例 #2
0
 public static bool exists <OrdT, T>(Set <OrdT, T> set, Func <T, bool> pred) where OrdT : struct, Ord <T> =>
 set.Exists(pred);