You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Simplify
* Clear line buffer explicitly
* Move line clearing outside logic branching
* Switch if-else branch order
* Delete needless branching, other branch early-returns, so this is equivalent
* fmt
* Inline return statement
* Equivalence transform of logic branches
* Equivalence transform of logic branches
* Hoist if across if let
* Delete else block
* Make explicit that !is_from holds implicitly for these branches
* Switch if let {...}; if {...} into if {...}; if let {...}
* Pull out common if check
* Merge common if clauses
* Introduce early continue
* Fixed clippy warnings
* Remove collecting into Vec
* Dont throw away IO error
0 commit comments