ObjFW  Diff

Differences From Artifact [5f1cbb4f52]:

To Artifact [c4383df0ad]:


45
46
47
48
49
50
51



52
53
54
55
56
57
58

/**
 * Resets the iterator, so the next call to nextObject returns the first again.
 */
- reset;
@end




@interface OFDictionary (OFIterator)
/**
 * Creates an OFIterator for the dictionary.
 *
 * It will copy the data of the OFDictionary so that OFIterator will always
 * operate on the data that was present when it was created. If you changed the
 * OFDictionary and want to operate on the new data, you need to create a new







>
>
>







45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

/**
 * Resets the iterator, so the next call to nextObject returns the first again.
 */
- reset;
@end

/**
 * The OFIterator category adds functions to get an interator to OFDictionary.
 */
@interface OFDictionary (OFIterator)
/**
 * Creates an OFIterator for the dictionary.
 *
 * It will copy the data of the OFDictionary so that OFIterator will always
 * operate on the data that was present when it was created. If you changed the
 * OFDictionary and want to operate on the new data, you need to create a new