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
@tbkka has been landing some code to the Swift StandardLib to speed up the float and double formatting. Float.description should now avoid the heap, but Double.description does still use the heap.
We should revisit current releases with our perf harness to see if we can move our code into a conditional block for old versions of Swift, to eventually phase it out.
The text was updated successfully, but these errors were encountered:
@tbkka has been landing some code to the Swift StandardLib to speed up the float and double formatting.
Float.description
should now avoid the heap, butDouble.description
does still use the heap.We should revisit current releases with our perf harness to see if we can move our code into a conditional block for old versions of Swift, to eventually phase it out.
The text was updated successfully, but these errors were encountered: