orderedSetWithArray$1 static method
orderedSetWithArray:range:copyItems:
Implementation
static NSMutableOrderedSet orderedSetWithArray$1(
NSArray array, {
required NSRange range,
required bool copyItems,
}) {
objc.checkOsVersionInternal(
'NSMutableOrderedSet.orderedSetWithArray:range:copyItems:',
iOS: (false, (5, 0, 0)),
macOS: (false, (10, 7, 0)),
);
final $ret = _objc_msgSend_w9bq5x(
_class_NSMutableOrderedSet,
_sel_orderedSetWithArray_range_copyItems_,
array.ref.pointer,
range,
copyItems,
);
return NSMutableOrderedSet.fromPointer($ret, retain: true, release: true);
}