示例#1
0
文件: RdSet.cs 项目: yvvan/rd
 public bool IsProperSupersetOf(IEnumerable <T> other) => mySet.IsProperSupersetOf(other);
 public bool IsProperSupersetOf(IEnumerable <T> other)
 {
     return(myBackingSet.IsProperSupersetOf(other));
 }