mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-14 01:01:05 +00:00
Following clippy advice:
error: this `map_or` can be simplified
--> tests\common\util.rs:411:9
|
411 | self.exit_status.map_or(true, |e| e.success())
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use is_none_or instead: `self.exit_status.is_none_or(|e| e.success())`
|
||
|---|---|---|
| .. | ||
| macros.rs | ||
| mod.rs | ||
| random.rs | ||
| util.rs | ||