Click here to Skip to main content
16,022,060 members

Comments by Infinity Owner (Top 2 by date)

Infinity Owner 5 days ago View    
I have considered using a Span, and probably will include a function for that eventually. But, because I am wanting this to be a part of a larger memory library, I would like it to be compatible with most managed code. There are very few functions that can use a Span compared to a byte[].

I know I could just as easily use managed memory for everything (and probably should), but there are cases where not having fine control over the memory just makes no sense (lots of massive transient allocations).

Also, I am wanting it to be able to create managed objects and arrays of any type eventually, so I will need to fix whatever is going wrong.
Infinity Owner 9-Oct-24 23:00pm View    
By the way, I already know this is in no way supported by the CLR.