|
|
|
|
|
- Existence of memory area
- Sorting the elements
MemSort (Function) In french: MemTrie
Warning
From version 20, this feature is kept for backward compatibility. We recommend that you use Associative arrays.
Sorts the elements found in a memory area. This sort is performed on the sort argument specified by MemAdd or MemModify. // The elements found in "MemoryZone" are sorted in ascending order MemSort("MemoryZone", True)
Syntax
MemSort(<Memory area> [, <Direction>])
<Memory area>: Character string Name of the memory area, defined by MemCreate. <Direction>: Optional boolean - True (default value) if the sort must be ascending,
- False if the sort must be descending.
Remarks Existence of memory area The existence of the memory area is not checked. If the specified memory area does not exist, a WLanguage error occurs when MemSort is used. To check the existence of a memory area, use MemExist. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|