BunSpreader
BunSpreader copied to clipboard
Queue or LinkedList?
Just watched your video. Cool stuff.
So you don't have to write your own next time: https://www.npmjs.com/package/@tsdotnet/queue (still backed by an array, but growing the array does not cause a copy) https://www.npmjs.com/package/@tsdotnet/linked-node-list (faster than linked-list but unsafe) https://www.npmjs.com/package/@tsdotnet/linked-list (managed, but not as fast as linked-node-list)