list.join
join two lists (similar to zl.join)
list.join(in1, in2): out1
Arguments:
Arguments
Name | Type | Default | Description |
---|---|---|---|
in1 | list | The left input list triggers output and always makes up the first portion of the output list. | |
in2 | list | The right input list. This lists values are always added to the end of the left input list. |
Returns
Name | Type | Description |
---|---|---|
out1 | list | The output list made of the left input list followed by the right input list. |