setWithCapacity static method

NSMutableSet setWithCapacity(
  1. int numItems
)

setWithCapacity:

Implementation

static NSMutableSet setWithCapacity(int numItems) {
  final $ret = _objc_msgSend_14hpxwa(
    _class_NSMutableSet,
    _sel_setWithCapacity_,
    numItems,
  );
  return NSMutableSet.fromPointer($ret, retain: true, release: true);
}