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