JesperAxelsson / rust-intmap

Specialized hashmap for u64 keys
MIT License
30 stars 12 forks source link

clippy #40

Closed chinoto closed 2 years ago

chinoto commented 2 years ago

Clippy is a code linter. I was going to run it earlier, but it wanted to make a lot of changes, so I postponed it for awhile. It's also suggesting changing &'a Vec<Vec<(K, V)>> to &'a [Vec<(K, V)>] (clippy::ptr_arg) in the iter functions, which while it wouldn't be a problem, it doesn't really match expectations.