list.sequence

Syntax

l := list.sequence(a...)

Generates a list of a sequence of entries, given as arguments in order.

For example, the function:

l = list.sequence(1,2,'a','b',math.pi)

will return a list five entries long. The first two entries are the integers 1 and 2. The secont two entries as the strings a and b. And the fifth entry is the floating point value pi.

Returns:

l - the list created from a sequence if values

Arguments:

a - the values use to create a list from. :…:\(.\)