C10 - initial
reverse (Sifts) | |
---|---|
Type | Corrade progressive sift |
Sift | reverse |
Parameters | the empty string |
Description | The reverse sift will reverse the CSV list. |
Last Changes | None |
The reverse
sift will reverse the CSV list.
Position | Type | Description | Example |
---|---|---|---|
0 | the empty string | None | "" |
The following sift, when added to a command, will reverse the list returned by the command:
"sift", wasListToCSV([ "reverse", "" ]),
Given the input:
data=1,a,2,c,3,d
then the expected output will be:
d,3,c,3,a,1
reverse
sift.