rust/compiler/rustc_const_eval
Nicholas Nethercote bcf0ec0191 Replace mk_foo calls with infer_foo where possible.
There are several `mk_foo`/`intern_foo` pairs, where the former takes an
iterator and the latter takes a slice. (This naming convention is bad,
but that's a fix for another PR.)

This commit changes several `mk_foo` occurrences into `intern_foo`,
avoiding the need for some `.iter()`/`.into_iter()` calls. Affected
cases:
- mk_type_list
- mk_tup
- mk_substs
- mk_const_list
2023-02-17 22:24:31 +11:00
..
src Replace mk_foo calls with infer_foo where possible. 2023-02-17 22:24:31 +11:00
Cargo.toml remove unused imports 2023-02-06 17:40:18 +03:00