| Procedure | Location | Procedure Type | Description |
|---|---|---|---|
| binary_search | sorting_module | Interface | Binary search of a sorted array. (assumed to be in ascending order) |
| expand_vector | sorting_module | Interface | Add elements to a vector in chunks. |
| sort_ascending | sorting_module | Interface | Sorts an array in increasing order. |
| sort_descending | sorting_module | Interface | Sorts an array in decreasing order. |
| unique | sorting_module | Interface | Returns only the unique elements of the vector. |