ListTools
Interleave
interleave a number of lists
Calling Sequence
Parameters
Description
Examples
Interleave(L1, L2,...)
L1, L2, ...
-
lists
The Interleave(L1, L2, ...) function interleaves the elements of the specified lists.
The number of elements in each list must be less than or equal to that of the preceding list. The first list can have at most one more operand than the last.
with⁡ListTools:
Interleave⁡1,2,3,a,b,c,A,B,C
1,a,A,2,b,B,3,c,C
Interleave⁡1,2,3,a,b,A,B
1,a,A,2,b,B,3
See Also
list
type[list]
Download Help Document