enumerateKeysAndObjectsUsingBlock method

void enumerateKeysAndObjectsUsingBlock(
  1. ObjCBlock<Void Function(Pointer<ObjCObjectImpl>, Pointer<ObjCObjectImpl>, Pointer<Bool>)> block
)

enumerateKeysAndObjectsUsingBlock:

Implementation

void enumerateKeysAndObjectsUsingBlock(
  objc.ObjCBlock<
    ffi.Void Function(
      ffi.Pointer<objc.ObjCObjectImpl>,
      ffi.Pointer<objc.ObjCObjectImpl>,
      ffi.Pointer<ffi.Bool>,
    )
  >
  block,
) {
  objc.checkOsVersionInternal(
    'NSDictionary.enumerateKeysAndObjectsUsingBlock:',
    iOS: (false, (4, 0, 0)),
    macOS: (false, (10, 6, 0)),
  );
  _objc_msgSend_f167m6(
    object$.ref.pointer,
    _sel_enumerateKeysAndObjectsUsingBlock_,
    block.ref.pointer,
  );
}