Apply suggestions for clippy 1.68

This commit is contained in:
Dirkjan Ochtman 2023-03-10 09:37:02 +01:00 committed by Kuba Jaroszewski
parent ebf9e453b6
commit e4ce915726
2 changed files with 0 additions and 3 deletions

View File

@ -10,7 +10,6 @@ benchmark_group!(benches, build_heuristic);
fn build_heuristic(bench: &mut Bencher) {
let mut rng = StdRng::seed_from_u64(SEED);
let points = (0..1024)
.into_iter()
.map(|_| [rng.gen(), rng.gen()])
.collect::<Vec<_>>();

View File

@ -10,7 +10,6 @@ use instant_distance::{Builder, Metric, Search};
#[allow(clippy::float_cmp, clippy::approx_constant)]
fn map() {
let points = (0..5)
.into_iter()
.map(|i| Point(i as f32, i as f32))
.collect::<Vec<_>>();
let values = vec!["zero", "one", "two", "three", "four"];
@ -59,7 +58,6 @@ fn randomized(builder: Builder) -> (u64, usize) {
let seed = ThreadRng::default().gen::<u64>();
let mut rng = StdRng::seed_from_u64(seed);
let points = (0..1024)
.into_iter()
.map(|_| Point(rng.gen(), rng.gen()))
.collect::<Vec<_>>();