Hm, originally I was thinking this:
[struct fifo float head float tail array a fifo-datum]
[struct fifo-datum float flag float f symbol s]
for a fifo of single-atom messages.
But for a fifo of Pd messages I'm talking about this:
[struct fifo float head float tail array a fifo-datum]
[struct fifo-datum text t]
-Jonathan
On Sunday, November 22, 2015 1:35 PM, Matt Barber <brbrofsvl@gmail.com> wrote:
You'd store the number of elements in the list at the first index of a fifo entry and the number of elements in the symbol or float just before the data for each atom -- on read you'd accumulate the atoms of the list and stop. The next index would be the number of elements in the next fifo list entry.