@@ -75,20 +75,20 @@ * \param item An arbitrary item */ - add: (void*)item; /** - * Adds items from a C array to the OFArray + * Adds items from a C array to the OFArray. * * \param nitems The number of items to add * \param carray A C array containing the items to add */ - addNItems: (size_t)nitems fromCArray: (void*)carray; /** - * Removes the last items from the OFArray + * Removes a specified amount of the last items from the OFArray. * * \param nitems The number of items to remove */ - removeNItems: (size_t)nitems; @end @@ -120,20 +120,20 @@ * \return An initialized OFBigArray */ - initWithItemSize: (size_t)is; /** - * Adds items from a C array to the OFBigArray + * Adds items from a C array to the OFBigArray. * * \param nitems The number of items to add * \param carray A C array containing the items to add */ - addNItems: (size_t)nitems fromCArray: (void*)carray; /** - * Removes the last items from the OFBigArray + * Removes a specified amount of the last items from the OFBigArray. * * \param nitems The number of items to remove */ - removeNItems: (size_t)nitems; @end