Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use & in pattern binding to remove noisy dereferencing of copy types. #4062

Open
purpleposeidon opened this issue May 5, 2019 · 0 comments

Comments

@purpleposeidon
Copy link

The following:

fn main() {
    let data = vec![1, 2, 3, 4, 5];
    for i in &data {
        if *i == 3 {
            println!("Hmm!");
        }
        if *i == 2 {
            println!("Ahh?");
        }
        if *i == 1 {
            println!("Wut?!");
        }
    }
}

is less noisily expressed as:

fn main() {
    let data = vec![1, 2, 3, 4, 5];
    for &i in &data {
        if i == 3 {
            println!("Hmm!");
        }
        if i == 2 {
            println!("Ahh?");
        }
        if i == 1 {
            println!("Wut?!");
        }
    }
}

and it's obviously shorter than .iter().cloned().

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant