firstObjectCommonWithArray_ method

NSObject? firstObjectCommonWithArray_(
  1. NSArray otherArray
)

Implementation

NSObject? firstObjectCommonWithArray_(NSArray otherArray) {
  final _ret = _lib._objc_msgSend_71(
      _id, _lib._sel_firstObjectCommonWithArray_1, otherArray._id);
  return _ret.address == 0
      ? null
      : NSObject._(_ret, _lib, retain: true, release: true);
}