firstObjectCommonWithArray method

ObjCObject? firstObjectCommonWithArray(
  1. NSArray otherArray
)

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);
}