@@ -148,10 +148,21 @@ /*! * @brief Sorts the array. */ - (void)sort; +/*! + * @brief Sorts the array. + * + * @param options The options to use when sorting the array.@n + * Possible values are: + * Value | Description + * ---------------------------|------------------------- + * OF_SORT_OPTIONS_DESCENDING | Sort in descending order + */ +- (void)sortWithOptions: (int)options; + /*! * @brief Reverts the order of the objects in the array. */ - (void)reverse;