mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
perf: use string preallocations for string concatenation
This commit is contained in:
parent
af3b670de6
commit
95344a9585
3 changed files with 20 additions and 1 deletions
|
@ -3,6 +3,7 @@ pub mod faccess;
|
|||
pub mod path;
|
||||
pub mod range;
|
||||
pub mod rope;
|
||||
pub mod str;
|
||||
pub mod time;
|
||||
|
||||
pub use range::Range;
|
||||
|
|
18
helix-stdx/src/str.rs
Normal file
18
helix-stdx/src/str.rs
Normal 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
|
||||
}}
|
||||
}
|
|
@ -71,5 +71,5 @@ pub fn format_relative_time(timestamp: i64, timezone_offset: i32) -> String {
|
|||
"from now"
|
||||
};
|
||||
|
||||
format!("{value} {unit} {label}")
|
||||
crate::concat!(value, " ", unit, " ", label)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue