unionSet method

void unionSet(
  1. NSSet other
)

unionSet:

Implementation

void unionSet(NSSet other) {
  objc.checkOsVersionInternal(
    'NSMutableOrderedSet.unionSet:',
    iOS: (false, (5, 0, 0)),
    macOS: (false, (10, 7, 0)),
  );
  _objc_msgSend_xtuoz7(
    object$.ref.pointer,
    _sel_unionSet_,
    other.ref.pointer,
  );
}