Table of Contents

Reverse

C10 - initial

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