@@ -286,10 +286,18 @@ * \param array The array with objects to add * \return A new array with the objects from the specified array added */ - (OFArray*)arrayByAddingObjectsFromArray: (OFArray*)array; +/** + * \brief Creates a new array with the specified object removed. + * + * \param object The object to remove + * \return A new array with the specified object removed + */ +- (OFArray*)arrayByRemovingObject: (id)object; + #ifdef OF_HAVE_BLOCKS /** * \brief Executes a block for each object. * * \param block The block to execute for each object