arrayWithObjects static method
arrayWithObjects:
Implementation
static NSMutableArray arrayWithObjects(objc.ObjCObject firstObj) {
final $ret = _objc_msgSend_1sotr3r(
_class_NSMutableArray,
_sel_arrayWithObjects_,
firstObj.ref.pointer,
);
return NSMutableArray.fromPointer($ret, retain: true, release: true);
}