Rust

Rust

Made by DeepSource

Found duplicate underscore arguments RS-W1014

Anti-pattern
Minor

Function arguments having similar names that differ by an underscore affect code readability.

Bad practice

fn foo(a: i32, _a: i32) {}

Recommended

fn foo(a: i32, _b: i32) {}