initWithObjects$1 method

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

initWithObjects:count:

Implementation

NSMutableSet initWithObjects$1(
  ffi.Pointer<ffi.Pointer<objc.ObjCObjectImpl>> objects, {
  required int count,
}) {
  final $ret = _objc_msgSend_zmbtbd(
    object$.ref.retainAndReturnPointer(),
    _sel_initWithObjects_count_,
    objects,
    count,
  );
  return NSMutableSet.fromPointer($ret, retain: false, release: true);
}