You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Meanwhile, the csFastFloat functions always skip leading spaces.
To get fair comparisons, we should create versions (maybe just for ASCII strings) of our functions which do not skip leading spaces.
Note that the cost of skipping leading spaces may not be a small as one would hope. It might cost several cycles and it adds several (predictable?) branches.
The text was updated successfully, but these errors were encountered:
In C#...
will not skip leading spaces whereas
will...
Meanwhile, the csFastFloat functions always skip leading spaces.
To get fair comparisons, we should create versions (maybe just for ASCII strings) of our functions which do not skip leading spaces.
Note that the cost of skipping leading spaces may not be a small as one would hope. It might cost several cycles and it adds several (predictable?) branches.
The text was updated successfully, but these errors were encountered: