Y
Hacker News
new
|
ask
|
show
|
jobs
by
titzer
263 days ago
Conceptually they are almost identical, though Virgil has explicit source syntax for making a subrange. One important difference, according to [1] Span<T> can only live on the stack. There are no lifetime restrictions for Range<T> in Virgil.
[1]
https://learn.microsoft.com/en-us/archive/msdn-magazine/2018...
1 comments
achandlerwhite
263 days ago
Memory<T> is the heap compatible version of Span<T> in C# for anyone curious.
link