dataWithCapacity static method
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);
}