### What it does emits warning on `iterator.enumerate().map(|(_unused_index, elem)| expr)`. ### Advantage - Removes counter, improving performance. ### Drawbacks None ### Example https://github.com/KisaragiEffective/origlang/blob/fa487aab90c7bbe1b0b4ebaedfa33b847985a1ba/package/origlang-compiler/src/type_check.rs#L270: ```rust iter.enumerate().map(|(_i, elem)| { whatever }) ``` Could be written as: ```rust iter.map(|elem| { whatever }) ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"Ethiraric"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->