nushell/crates/nu-command/src/env
Stefan Holderbach 406df7f208
Avoid taking unnecessary ownership of intermediates (#12740)
# Description

Judiciously try to avoid allocations/clone by changing the signature of
functions

- **Don't pass str by value unnecessarily if only read**
- **Don't require a vec in `Sandbox::with_files`**
- **Remove unnecessary string clone**
- **Fixup unnecessary borrow**
- **Use `&str` in shape color instead**
- **Vec -> Slice**
- **Elide string clone**
- **Elide `Path` clone**
- **Take &str to elide clone in tests**

# User-Facing Changes
None

# Tests + Formatting
This touches many tests purely in changing from owned to borrowed/static
data
2024-05-04 00:53:15 +00:00
..
config Avoid taking unnecessary ownership of intermediates (#12740) 2024-05-04 00:53:15 +00:00
export_env.rs Remove the Value::Block case (#12582) 2024-04-21 07:03:33 +02:00
load_env.rs Shrink the size of Expr (#12610) 2024-04-24 15:46:35 +00:00
mod.rs remove let-env, focus on mutating $env (#9574) 2023-07-01 07:57:51 +12:00
source_env.rs Add command_prelude module (#12291) 2024-03-26 21:17:30 +00:00
with_env.rs Improve with-env robustness (#12523) 2024-04-16 19:08:58 +08:00