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.
|
|
If the first argument is a list or sequence and any later arguments are instances of a class with the iterator method installed, then these instances are converted to sequences and are then joined.
|
If the first argument is not a list or sequence, then an Iterator object is returned that iterates through each argument sequentially, provided that each argument is an iterable object.
|
|
The object join is a compiled function.
The source of this document is in Macaulay2Doc/functions/join-doc.m2:53:0.