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
{{ message }}
This repository was archived by the owner on May 3, 2026. It is now read-only.
I run verybasic benchmarks for various string implementations. I arbitrarily chose is_empty for my "access" test to see how expensive it was to use the underlying &str and SmartString is ridicuously slow compared to the others.
Looks like SmartString hand implements is_empty rather than relying on the Deref. I'm assuming its some lack of inlining.
I run very basic benchmarks for various string implementations. I arbitrarily chose
is_emptyfor my "access" test to see how expensive it was to use the underlying&strandSmartStringis ridicuously slow compared to the others.Looks like
SmartStringhand implementsis_emptyrather than relying on theDeref. I'm assuming its some lack of inlining.