List Functions

Articles

concat
Returns a list result that combines two other lists or values. Function result = concat(first, second) Arguments Argument Data Type first any or list second any or list result list Comments Returns a single list of items...
distinct
Removes duplicates from a list of values. Function result = distinct(input) Arguments Argument Data Type input list result list Comments Returns a list of unique values; the result  will be the input  with all duplicates r...
first
Returns the first (or several first) items in a list. Function result = first([count], input) Arguments Argument Data Type count integer input list result list or single value of the input list's item type Comments The d...
last
Returns the last (or several last) items in a list. Function result = last([count], input) Arguments Argument Data Type count integer input list result list or single value of the input list's item type Comments The defa...
reverse
Returns a list result in the reverse order. Function result = reverse(input) Arguments Argument Data Type input list result list Comments Reverses the order of a list. This function is usually used with ordering to return a...
skip
Returns a provided list, but with the first, or several first, items omitted. Function result = skip(count, input) Arguments Argument Data Type count integer input list result list Comments Returns the input  list start...