join(A, B, ...)
join(A, B, ...) joins the elements of the lists or sequences A, B, ... into a single list or sequence. The inputs may belong to different classes; the class of the result will match the class of the first argument passed to join.
|
|
The operator | is a convenient shorthand for joining two inputs of the same class.
|
|
The object join is a compiled function.