You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Supported list types

Number list

The function returns the NUMBER LIST  in inverted order.

Syntax
invertList(number list l) #Output: Number list
Examples
Parser expressionDescription
invertList([1, 2, 3])

The function returns a NUMBER LIST : [3, 2, 1]

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a NUMBER LIST


Text list

The function returns the TEXT LIST in inverted order.

Syntax
invertList(text list l) #Output: Text list
Examples
Parser expressionDescription
invertList(["first", "second", "third"])

The function returns a TEXT LIST : ["third", "second", "first"]

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a TEXT LIST