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

Compare with Current View Page History

« Previous Version 5 Next »

Supported list types

Number list

The function returns a NUMBER LIST in result of evaluating math_time_expression against each of the numeric values in argument numbers.

Argument math_time_expression is a math/time expression, where ^ represents each numeric value in argument numbers.

Syntax
mathOnNumberList(number list numbers, number math_time_expression) #Output: Number list
Examples
Parser expressionDescription
mathOnNumberList([1, 2, 3, 4, 5], ^ * 2) 

The function returns the NUMBER LIST : [2, 4, 6, 8, 10]

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a NUMBER LIST


Text list

The function returns a NUMBER resulting of evaluating math_time_expression against each of the issues in argument issues.

Argument math_time_expression is a math/time expression, where ^% represents each string in argument strings.

Syntax
mathOnStringList(string list strings, number math_time_expression) #Output: Number list
Examples
Parser expressionDescription
mathOnStringList(["a", "ab", "abc", "abcd", "abcde"], length(^%))

The function returns the NUMBER LIST : [1, 2, 3, 4, 5]

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a NUMBER LIST