#import "OFObject.h"
#import "OFEnumerator.h"
Go to the source code of this file.
◆ OFMapTableEnumerationBlock
| typedef void(^ OFMapTableEnumerationBlock) (void *key, void *object, bool *stop) |
A block for enumerating an OFMapTable.
- Parameters
-
| key | The current key |
| object | The current object |
| stop | A pointer to a variable that can be set to true to stop the enumeration |
◆ OFMapTableReplaceBlock
| typedef void *(^ OFMapTableReplaceBlock) (void *key, void *object) |
A block for replacing objects in an OFMapTable.
- Parameters
-
| key | The key of the object to replace |
| object | The object to replace |
- Returns
- The object to replace the object with