We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fn main() { let c: std::collections::HashMap<i32, String> = Default::default(); for (_, b) in c { println!("{:?}", b); } }
The lint suggests to use values() but AFAIK there is no consuming alternative to values(). (And if it exists, the message should mention it.)
values()
Similar issue: #709.