ObjFW
Classes | Typedefs
OFSet.h File Reference
#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 Documentation

typedef void(^ of_set_enumeration_block_t) (id object, bool *stop)

A block for enumerating an OFSet.

Parameters
objectThe current object
stopA pointer to a variable that can be set to true to stop the enumeration
typedef bool(^ of_set_filter_block_t) (id object)

A block for filtering an OFSet.

Parameters
objectThe object to inspect
Returns
Whether the object should be in the filtered set