ObjFW
|
#include <stdarg.h>
#import "OFObject.h"
#import "OFCollection.h"
#import "OFSerialization.h"
#import "OFMutableSet.h"
Go to the source code of this file.
Classes | |
class | OFSet |
An abstract class for an unordered set of unique objects. More... | |
Typedefs | |
typedef void(^ | of_set_enumeration_block_t) (id object, bool *stop) |
A block for enumerating an OFSet. More... | |
typedef bool(^ | of_set_filter_block_t) (id object) |
A block for filtering an OFSet. More... | |
typedef void(^ of_set_enumeration_block_t) (id object, bool *stop) |
A block for enumerating an OFSet.
object | The current object |
stop | A pointer to a variable that can be set to true to stop the enumeration |