rust/clippy_lints
Michael Howell c012693961 needless_collect: avoid warning if non-iterator methods are used
It can make sense to `collect()` an iterator and then immediately
iterate over it if the iterator has special methods that you need.
For example, the Map iterator doesn't implement Clone, but the
collection iterator might. Or the collection iterator might
support slicing.
2025-02-04 13:07:06 -07:00
..
src needless_collect: avoid warning if non-iterator methods are used 2025-02-04 13:07:06 -07:00
Cargo.toml Select edition 2024 2025-01-13 16:55:42 +01:00
README.md clippy_lints: readme: don't mention crates.io since it is no longer used to publish clippy. 2020-03-10 01:05:54 +01:00

This crate contains Clippy lints. For the main crate, check GitHub.