예제 #1
0
 public static bool isProperSuperHSet <T>(HashSet <T> setA, IEnumerable <T> setB) =>
 setA.IsProperSupersetOf(setB);
예제 #2
0
 public static bool isProperSuperHSet <EqT, T>(HashSet <EqT, T> setA, HashSet <EqT, T> setB) where EqT : struct, Eq <T> =>
 setA.IsProperSupersetOf(setB);