firstObjectCommonWithArray method
firstObjectCommonWithArray:
Implementation
objc.ObjCObject? firstObjectCommonWithArray(NSArray otherArray) {
final $ret = _objc_msgSend_1sotr3r(
object$.ref.pointer,
_sel_firstObjectCommonWithArray_,
otherArray.ref.pointer,
);
return $ret.address == 0
? null
: objc.ObjCObject($ret, retain: true, release: true);
}