ObjFW
|
A protocol with methods common for all collections. More...
#include <ObjFW/ObjFW.h>
Instance Methods | |
(bool) | - containsObject: |
Checks whether the collection contains an object equal to the specified object. | |
Instance Methods inherited from <OFEnumeration> | |
(OFEnumerator *) | - objectEnumerator |
Returns an OFEnumerator to enumerate through all objects of the collection. | |
Instance Methods inherited from <OFFastEnumeration> | |
(int) | - countByEnumeratingWithState:objects:count: |
A method which is called by the code produced by the compiler when doing a fast enumeration. | |
Properties | |
size_t | count |
The number of objects in the collection. | |
A protocol with methods common for all collections.
- (bool) containsObject: | (id) | object |
Checks whether the collection contains an object equal to the specified object.
object | The object which is checked for being in the collection |