fix(clippy): explicit_iter_loop

This commit is contained in:
Gabriele Belluardo
2025-06-16 23:22:28 +02:00
parent 19e04a26cf
commit dc72ad9242
@@ -363,7 +363,7 @@ fn parse_special_value<'a>(
("nan", ExtendedBigDecimal::Nan),
];
for (str, ebd) in MATCH_TABLE.iter() {
for (str, ebd) in MATCH_TABLE {
if input_lc.starts_with(str) {
let mut special = ebd.clone();
if negative {