dictionaryWithCapacity static method

NSMutableDictionary dictionaryWithCapacity(
  1. int numItems
)

dictionaryWithCapacity:

Implementation

static NSMutableDictionary dictionaryWithCapacity(int numItems) {
  final $ret = _objc_msgSend_14hpxwa(
    _class_NSMutableDictionary,
    _sel_dictionaryWithCapacity_,
    numItems,
  );
  return NSMutableDictionary.fromPointer($ret, retain: true, release: true);
}