perf: use string preallocations for string concatenation

This commit is contained in:
Nik Revenco 2025-03-29 23:59:06 +00:00
parent af3b670de6
commit 95344a9585
3 changed files with 20 additions and 1 deletions

View file

@ -3,6 +3,7 @@ pub mod faccess;
pub mod path; pub mod path;
pub mod range; pub mod range;
pub mod rope; pub mod rope;
pub mod str;
pub mod time; pub mod time;
pub use range::Range; pub use range::Range;

18
helix-stdx/src/str.rs Normal file
View file

@ -0,0 +1,18 @@
/// Concatenates strings together.
///
/// `concat!(a, " ", b, " ", c)` is:
/// - more performant than `format!("{a} {b} {c}")`
/// - more ergonomic than using `String::with_capacity` followed by a series of `String::push_str`
#[macro_export]
macro_rules! concat {
($($value:expr),*) => {{
// Rust does not allow using `+` as separator between value
// so we must add that at the end of everything. The `0` is necessary
// at the end so it does not end with "+ " (which would be invalid syntax)
let mut buf = String::with_capacity($($value.len() + )* 0);
$(
buf.push_str(&$value);
)*
buf
}}
}

View file

@ -71,5 +71,5 @@ pub fn format_relative_time(timestamp: i64, timezone_offset: i32) -> String {
"from now" "from now"
}; };
format!("{value} {unit} {label}") crate::concat!(value, " ", unit, " ", label)
} }