arrayWithObjects$1 static method

NSMutableArray arrayWithObjects$1(
  1. Pointer<Pointer<ObjCObjectImpl>> objects, {
  2. required int count,
})
override

arrayWithObjects:count:

Implementation

static NSMutableArray arrayWithObjects$1(
  ffi.Pointer<ffi.Pointer<objc.ObjCObjectImpl>> objects, {
  required int count,
}) {
  final $ret = _objc_msgSend_zmbtbd(
    _class_NSMutableArray,
    _sel_arrayWithObjects_count_,
    objects,
    count,
  );
  return NSMutableArray.fromPointer($ret, retain: true, release: true);
}