Sort an item in a list to another index. In zlist_SortI, the item to be sorted is specified by its current location (compare: zlist_SortA).
| Declaration | Zeolite.h |
|---|---|
| Implementation | Zeolite.cpp |
bool zlist_SortI(ZLIST hList, long From, long To);
| Name | Type | Comment |
|---|---|---|
| hList | ZLIST | A handle to a ZLIST variable containg the item to be sorted. |
| From | long | The current index of the item to be sorted. |
| To | long | The desired index of the item. |
False if an error occurred, and true otherwise.
None.