enumerateObjectsAtIndexes method

void enumerateObjectsAtIndexes(
  1. NSIndexSet s, {
  2. required int options,
  3. required ObjCBlock<Void Function(Pointer<ObjCObjectImpl>, UnsignedLong, Pointer<Bool>)> usingBlock,
})

enumerateObjectsAtIndexes:options:usingBlock:

Implementation

void enumerateObjectsAtIndexes(
  NSIndexSet s, {
  required int options,
  required objc.ObjCBlock<
    ffi.Void Function(
      ffi.Pointer<objc.ObjCObjectImpl>,
      ffi.UnsignedLong,
      ffi.Pointer<ffi.Bool>,
    )
  >
  usingBlock,
}) {
  objc.checkOsVersionInternal(
    'NSOrderedSet.enumerateObjectsAtIndexes:options:usingBlock:',
    iOS: (false, (5, 0, 0)),
    macOS: (false, (10, 7, 0)),
  );
  _objc_msgSend_a3wp08(
    object$.ref.pointer,
    _sel_enumerateObjectsAtIndexes_options_usingBlock_,
    s.ref.pointer,
    options,
    usingBlock.ref.pointer,
  );
}