ObjFW  Diff

Differences From Artifact [f499a0e97e]:

To Artifact [0cfa8bd2d7]:


48
49
50
51
52
53
54







55
/**
 * \brief Removes all objects from the receiver that are not in the specified
 *	  set.
 *
 * \param set The set to intersect
 */
- (void)intersectSet: (OFSet*)set;







@end







>
>
>
>
>
>
>

48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
 * \brief Removes all objects from the receiver that are not in the specified
 *	  set.
 *
 * \param set The set to intersect
 */
- (void)intersectSet: (OFSet*)set;

/**
 * \brief Creates a union of the receiver and the specified set.
 *
 * \param set The set to create the union with
 */
- (void)unionSet: (OFSet*)set;
@end