예제 #1
0
파일: RdSet.cs 프로젝트: yvvan/rd
 public bool IsProperSupersetOf(IEnumerable <T> other) => mySet.IsProperSupersetOf(other);
예제 #2
0
 public bool IsProperSupersetOf(IEnumerable <T> other)
 {
     return(myBackingSet.IsProperSupersetOf(other));
 }