Beta 4 buf2list

Lists are cropped to length 256. Is there an argument to specify longer lists? The help file does not specify anything, other than max list length is 32767.

Whoops, sorry. Help needs augmenting for all the new goodness.

Initial argument, like zl. I think there was some chat internally about initializing to a more generous size.

Note that if you’re using it just in the main thread, there’s an @autosize attribute that will adapt (at the cost of an allocation where needed). This can’t be used in the high priority thread though.

buf2list is capped on purpose like zl because problems need to arrive early in the chain. We should be clearer about this in the help file

list2buf is the one with the @autosize argument IIRC, no?

I just updated to 1.0.5 and can confirm that the limit of 256 is set in place. Would love to see what can be done with a much higher limit.

Hiya,

The default is 256, but – as with zl you can pass an integer argument to set the max size to something else, up to a hard limit of 32767 (Max’s limit, not ours)

Ah thank you for clarifying!