Hacker News new | ask | show | jobs
by algorithmsRcool 254 days ago
Isn't Span<T> the exact same concept?
1 comments

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...

Memory<T> is the heap compatible version of Span<T> in C# for anyone curious.