objectAtIndexedSubscript method
objectAtIndexedSubscript:
Implementation
objc.ObjCObject objectAtIndexedSubscript(int idx) {
objc.checkOsVersionInternal(
'NSArray.objectAtIndexedSubscript:',
iOS: (false, (6, 0, 0)),
macOS: (false, (10, 8, 0)),
);
final $ret = _objc_msgSend_14hpxwa(
object$.ref.pointer,
_sel_objectAtIndexedSubscript_,
idx,
);
return objc.ObjCObject($ret, retain: true, release: true);
}