Previous Up Next

5.43.15  Transform a list into a sequence: op makesuite

op or makesuite takes as argument a list.
op or makesuite transforms this list into a sequence.
See 5.16.3 for other usages of op.
Input:

op([0,1,2])

or:

makesuite([0,1,2])

Output:

(0,1,2)

Previous Up Next