list.lace
Lace, interleave two lists
list.lace(a, b): out1
Arguments:
Arguments
Name | Type | Default | Description |
---|---|---|---|
a | list | The list to be laced; triggers output. Elements from this list always preceed the same-index element in the right input list. | |
b | list | The list to be laced in. Elements from this list always come after the same-index element in the left input list. |
Returns
Name | Type | Description |
---|---|---|
out1 | list | The output list is an interleaved list made up of the left and right input lists. |