@@ -31,34 +31,34 @@ * \brief An abstract class for an unordered set of unique objects. */ @interface OFSet: OFObject /** - * \brief Returns a new, autoreleased set. + * \brief Creates a new set. * * \return A new, autoreleased set */ + set; /** - * \brief Returns a new, autoreleased set with the specified set. + * \brief Creates a new set with the specified set. * * \param set The set to initialize the set with * \return A new, autoreleased set with the specified set */ + setWithSet: (OFSet*)set; /** - * \brief Returns a new, autoreleased set with the specified array. + * \brief Creates a new set with the specified array. * * \param array The array to initialize the set with * \return A new, autoreleased set with the specified array */ + setWithArray: (OFArray*)array; /** - * \brief Returns a new, autoreleased set with the specified objects. + * \brief Creates a new set with the specified objects. * * \param firstObject The first object for the set * \return A new, autoreleased set with the specified objects */ + setWithObjects: (id)firstObject, ...; @@ -121,11 +121,11 @@ * \param block The block to execute for each object in the set */ - (void)enumerateObjectsUsingBlock: (of_set_enumeration_block_t)block; /** - * \brief Returns a new set, only containing the objects for which the block + * \brief Creates a new set, only containing the objects for which the block * returns YES. * * \param block A block which determines if the object should be in the new set * \return A new, autoreleased OFSet */