quick summary: im asking for a built in Buffer and Queue type, something fast, optimized, and cool
lets say im downloading a 200mb text file from a web site, I can set the socket buffer to either a fast buffer (using asm or I guess multithreading) or the standard lifo buffer, which is just a variable pointed at int
and yes I know some buffers and arrays (I think) are lifo already, but some optimization to a buffer type that makes it efficient and fast and capable on aarch64, also having a native queue or fancy buffer would be neat. just a suggestion
also a built in queue type would be cool, lets say I have another 500mb of text downloading, I could use a buffer in holding all the text but I can use a queue to possibly hold, sort, and execute any data using functions, never really used the queue package in swift
sorry if this sounds jumbled, its late
but If we use buffers/queues on apple software we have a chance of very fast efficient software