larray.union
- larray.union(*args) List[Any] [source]
Return the union of several “value strings” as a list.
- Parameters
- *args
(collection of) value(s) to be converted into label(s). Repeated values are taken only once.
- Returns
- list of labels
Examples
>>> union('a', 'a, b, c, d', ['d', 'e', 'f'], '..2') ['a', 'b', 'c', 'd', 'e', 'f', 0, 1, 2]