rust-lang/rust-clippy
在 GitHub 查看improve collapsible if in complex cases with same expressions
Open
#812 建立於 2016年3月30日
A-lintC-enhancementgood first issue
倉庫指標
- Star
- (10,406 star)
- PR 合併指標
- (平均合併 19天 22小時) (30 天內合併 113 個 PR)
描述
if a {
if b {
f();
}
} else {
f();
}
could be
if !a || b {
f();
}