indexPassingTest method

int indexPassingTest(
  1. ObjCBlock<Bool Function(UnsignedLong, Pointer<Bool>)> predicate
)

indexPassingTest:

Implementation

int indexPassingTest(
  objc.ObjCBlock<ffi.Bool Function(ffi.UnsignedLong, ffi.Pointer<ffi.Bool>)>
  predicate,
) {
  objc.checkOsVersionInternal(
    'NSIndexSet.indexPassingTest:',
    iOS: (false, (4, 0, 0)),
    macOS: (false, (10, 6, 0)),
  );
  return _objc_msgSend_10mlopr(
    object$.ref.pointer,
    _sel_indexPassingTest_,
    predicate.ref.pointer,
  );
}