Table of Contents

Reverse

C10 - initial

reverse (Sifts)
TypeCorrade progressive sift
Siftreverse
Parametersthe empty string
DescriptionThe reverse sift will reverse the CSV list.
Last ChangesNone

The reverse sift will reverse the CSV list.

Arguments

Position Type Description Example
0 the empty string None ""

Example

The following sift, when added to a command, will reverse the list returned by the command:

"sift", wasListToCSV([
        "reverse", ""
    ]),

Effect on Returned Data

Given the input:

data=1,a,2,c,3,d

then the expected output will be:

d,3,c,3,a,1

Notes