I was looking through some of the list-abs objects, and short of going through each one, I was hoping to find an object that converts a stream of objects (floats and symbols), and outputs a list of the collected items when a bang is received. I am not really sure what this might be called, and the names aren't always obvious for what they do...
Thanks,
Mike
Hallo, Mike McGonagle hat gesagt: // Mike McGonagle wrote:
I was looking through some of the list-abs objects, and short of going through each one, I was hoping to find an object that converts a stream of objects (floats and symbols), and outputs a list of the collected items when a bang is received. I am not really sure what this might be called, and the names aren't always obvious for what they do...
That's called [list-extend] in the [list]-abs, but if you look inside, you'll see that it's just a cross-connected [list prepend]x[t a] (like in a counter), so maybe you don't need to use an abstraction for this.
Use [list]x[t a] to let the list grow on the other side.
Frank