dataWithCapacity static method

NSMutableData? dataWithCapacity(
  1. int aNumItems
)

dataWithCapacity:

Implementation

static NSMutableData? dataWithCapacity(int aNumItems) {
  final $ret = _objc_msgSend_14hpxwa(
    _class_NSMutableData,
    _sel_dataWithCapacity_,
    aNumItems,
  );
  return $ret.address == 0
      ? null
      : NSMutableData.fromPointer($ret, retain: true, release: true);
}