trampster / JsonSrcGen

Json library that uses .NET 5 Source Generators
MIT License
148 stars 4 forks source link

Optimise whitespace skipping to char #65

Closed trampster closed 3 years ago

trampster commented 3 years ago

Turn on inlining. Can get faster whitespace skipping to a specific character, by just looking for that character and ignoring the whitespace.

trampster commented 3 years ago

done