示例#1
0
 public NSSet<E> setByUnioningSet(NSSet<? extends E> otherSet) {
   NSMutableSet<E> set = new NSMutableSet<E>(this);
   set.unionSet(otherSet);
   return set;
 }