ObjFW  Diff

Differences From Artifact [69a9127fc3]:

To Artifact [39431ad515]:


12
13
14
15
16
17
18
19
20


21
22
23
24
25
26
27
28


29
30

31
32
33
34
35


36
37
38
39


40
41
42
12
13
14
15
16
17
18


19
20
21
22
23
24
25
26


27
28
29

30
31
32
33


34
35
36
37


38
39
40
41
42







-
-
+
+






-
-
+
+

-
+



-
-
+
+


-
-
+
+



 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#import "OFEnumerator.h"

/**
 * \brief A protocol with methods common for all collections.
/*!
 * @brief A protocol with methods common for all collections.
 */
@protocol OFCollection <OFEnumerating, OFFastEnumeration>
#ifdef OF_HAVE_PROPERTIES
@property (readonly) size_t count;
#endif

/**
 * \brief Returns the number of objects in the collection.
/*!
 * @brief Returns the number of objects in the collection.
 *
 * \return The number of objects in the collection
 * @return The number of objects in the collection
 */
- (size_t)count;

/**
 * \brief Checks whether the collection contains an object equal to the
/*!
 * @brief Checks whether the collection contains an object equal to the
 *	  specified object.
 *
 * \param object The object which is checked for being in the collection
 * \return A boolean whether the collection contains the specified object
 * @param object The object which is checked for being in the collection
 * @return A boolean whether the collection contains the specified object
 */
- (BOOL)containsObject: (id)object;
@end