I can't wait to use `extract_if` in #CSVDiff! :awesome:
csv-diff makes use of a "manual" (aka hacky) implementation of it using `drain` (to remove equal csv records) in combination with an "intermediate" HashMap to restore the not-to-be-removed csv records (the ones that are different):
https://gitlab.com/janriemer/csv-diff/-/blob/main/src/diff_result.rs?ref_type=heads#L599
We can _probably_ remove this hacky implementation and replace it with `extract_if`! Very exciting!
2/2