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