about summary refs log tree commit diff
path: root/tests/codegen/string-push.rs
AgeCommit message (Collapse)AuthorLines
2025-04-09Speed up `String::push` and `String::insert`lincot-0/+11
Improve performance of `String` methods by avoiding unnecessary memcpy for the character bytes, with added codegen check to ensure compliance.