Codebox Operators list.join

list.join

join two lists (similar to zl.join)

list.join(in1, in2): out1

Arguments:

Arguments

NameTypeDefaultDescription
in1list

The left input list triggers output and always makes up the first portion of the output list.

in2list

The right input list. This lists values are always added to the end of the left input list.

Returns

NameTypeDescription
out1list

The output list made of the left input list followed by the right input list.