SSW-CocoR / CocoR-CSharp

Coco/R for C#
Other
27 stars 7 forks source link

Using Span<T> for parsing #2

Open bjorg opened 4 years ago

bjorg commented 4 years ago

The introduction of Span<T> in .NET Core could be provide a good performance optimization by avoiding unnecessary string copies in memory. This reduces GC overhead, as well as, reduces the need to copy bytes around.

I would love to assist in such a port, but need guidance on how to contribute. Thx!