We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
with_capacity
rewrite_path
1 parent d5f1200 commit 28e43b6Copy full SHA for 28e43b6
src/types.rs
@@ -43,11 +43,13 @@ pub(crate) fn rewrite_path(
43
) -> Option<String> {
44
let skip_count = qself.as_ref().map_or(0, |x| x.position);
45
46
- let mut result = if path.is_global() && qself.is_none() && path_context != PathContext::Import {
47
- "::".to_owned()
48
- } else {
49
- String::new()
50
- };
+ // 32 covers almost all path lengths measured when compiling core, and there isn't a big
+ // downside from allocating slightly more than necessary.
+ let mut result = String::with_capacity(32);
+
+ if path.is_global() && qself.is_none() && path_context != PathContext::Import {
51
+ result.push_str("::");
52
+ }
53
54
let mut span_lo = path.span.lo();
55
0 commit comments