orderedSetWithArray static method

NSMutableOrderedSet orderedSetWithArray(
  1. NSArray array
)
override

orderedSetWithArray:

Implementation

static NSMutableOrderedSet orderedSetWithArray(NSArray array) {
  objc.checkOsVersionInternal(
    'NSMutableOrderedSet.orderedSetWithArray:',
    iOS: (false, (5, 0, 0)),
    macOS: (false, (10, 7, 0)),
  );
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSMutableOrderedSet,
    _sel_orderedSetWithArray_,
    array.ref.pointer,
  );
  return NSMutableOrderedSet.fromPointer($ret, retain: true, release: true);
}