gregsdennis/Manatee.Json

Parsing improvements

gregsdennis opened this issue · 1 comments

See if spans can be utilized to increase performance when parsing strings.

Ref: https://stackoverflow.com/a/51681829/878701

The current implementation uses direct character indexing, not substrings. The primary use for Span<T> was to overcome the overhead from substrings, so I doubt this will help much, if any.