setWithArray static method

NSMutableSet setWithArray(
  1. NSArray array
)
override

setWithArray:

Implementation

static NSMutableSet setWithArray(NSArray array) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSMutableSet,
    _sel_setWithArray_,
    array.ref.pointer,
  );
  return NSMutableSet.fromPointer($ret, retain: true, release: true);
}