I use the CircularBuffer for some R&D work. I have some blittable structs message types, and marshalling to byte sequences. Currently I use Span, but because writing to a buffer requires byte[] I need to create a byte array, which means making a copy of the bytes, I want to try and reduce this and thought it would be nice fi the library natively supported Span to avoid the copying needed to create an array.
I use the CircularBuffer for some R&D work. I have some blittable structs message types, and marshalling to byte sequences. Currently I use Span, but because writing to a buffer requires byte[] I need to create a byte array, which means making a copy of the bytes, I want to try and reduce this and thought it would be nice fi the library natively supported Span to avoid the copying needed to create an array.