trampster / JsonSrcGen

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

Optimise FromJson int #66

Closed trampster closed 3 years ago

trampster commented 3 years ago

Move the whitespace skipping into the method to avoid a Slice. Try and optimise the loop to avoid comparison and move the first digit outside the loop

trampster commented 3 years ago

Done