pack object for lists?

Kaspar's icon

Hi,

Is there an object where you can pack several lists together, so that if I send this list into inlet 1 (1 2 3 4 5) and this list into inlet 2 (6 7 8 9 10) then I will end up with this list: 1 2 3 4 5 6 7 8 9 10?

Thanks,

K

Kaspar's icon

ah, [zl join] if course!

Kaspar's icon

- however, with this object I can only join two lists ...

Pedro Santos's icon

You can always use [zl join] recurrently...

join 12 with 34
join 56 with 78
join the previous results (1234 with 5678) = 12345678

David Butler's icon
Max Patch
Copy patch and select New From Clipboard in Max.

mxj list.Join is what you want.

Luke Hall's icon

You could also route all your lists to [zl group] and bang it when everything has been received, as long as they all go in the correct order.

Nikolas K's icon
Max Patch
Copy patch and select New From Clipboard in Max.

and the [pack] object does takes lists!

But the [zl group] and [zl join] should be better choices!!!
Nikoas

skewborg's icon

A little bit older this threat, here is my solution:

Max Patch
Copy patch and select New From Clipboard in Max.

ben sonic's icon

you can also just use the plain "join" object.

Max Patch
Copy patch and select New From Clipboard in Max.

and further more bach.join, if you have bach installed.

skewborg's icon

Yes, Ben that's good to know that it works with join. I always gone with zl.join for lists and there it's not possible.