cleanup and comments

This commit is contained in:
Folkert 2021-08-07 01:31:40 +02:00
parent 7f46073eaa
commit 524bde64d0
2 changed files with 33 additions and 37 deletions

View file

@ -479,8 +479,8 @@ fn separate_record_fields(
Variable,
Variable,
) {
let (it1, new_ext1) = fields1.sorted_iterator_help(subs, ext1);
let (it2, new_ext2) = fields2.sorted_iterator_help(subs, ext2);
let (it1, new_ext1) = fields1.sorted_iterator_and_ext(subs, ext1);
let (it2, new_ext2) = fields2.sorted_iterator_and_ext(subs, ext2);
let it1 = it1.collect::<Vec<_>>();
let it2 = it2.collect::<Vec<_>>();