arrayWithObjects$1 static method

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

arrayWithObjects:count:

Implementation

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