mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-23 05:03:47 +00:00
fc061890d6
Key idea: ``` // before iter.cloned().filter(|x| unimplemented!() ) // after iter.filter(|&x| unimplemented!() ).cloned() // before iter.cloned().filter( foo ) // after iter.filter(|&x| foo(x) ).cloned() ``` |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md |