ListPack

Qubes 5.4 Deletes empty elements from a set of list values.

Syntax

ListPack(param1, param2, ...)
param1 = first parameter in the set (value, range, or list)
param2 = second parameter in the set (value, range, or list)
... = nth parameter in the set (value, range, or list)

Remarks

This function accepts an unlimited number of parameters. The length of the resulting list can be calculated using the Length function.
To eliminate any duplicate values, see ListUnique.

Examples

ListPack(1, "") = { 1 }
ListPack(1, ListPack("", 3)) = { 1, 3 }

Classification

Ranges