1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 22:37:11 +03:00
wezterm/wezterm-dynamic
Jalil David Salamé Messina d541e2e13d fix(clippy): Remove closures where possible
- Removes closures and function calls for types that implement default:

  ```rust
  // Change
  let _my_str = get_str().unwrap_or(String::new);
  // To
  let _my_str = get_str().unwrap_or_default();
  ```

- Uses the `.cloned()/.copied()` methods where possible
- Use function pointer instead of simple closure

May improve performace, as closures generate more code, and this might
unlock some inlining opportunities.
2023-03-19 08:41:38 -07:00
..
derive lfucache: improve LFU algorithm and structure 2022-11-14 10:00:49 -07:00
src fix(clippy): Remove closures where possible 2023-03-19 08:41:38 -07:00
tests add wezterm-dynamic crate 2022-05-18 07:47:39 -07:00
Cargo.toml prep for publishing wezterm-bidi and wezterm-dynamic to crates.io 2022-08-01 18:35:56 -07:00
LICENSE.md Add missing license files 2022-08-17 07:19:12 -07:00