mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
drop into_iter in some places
This commit is contained in:
parent
e6a154765c
commit
6ab54c02e2
9 changed files with 21 additions and 21 deletions
|
@ -1937,7 +1937,7 @@ impl<'a> LambdaSet<'a> {
|
|||
// it to both vectors.
|
||||
let mut joined = set
|
||||
.into_iter()
|
||||
.zip(set_with_variables.into_iter())
|
||||
.zip(set_with_variables)
|
||||
.collect::<std::vec::Vec<_>>();
|
||||
joined.sort_by(|(lam_and_captures1, _), (lam_and_captures2, _)| {
|
||||
lam_and_captures1.cmp(lam_and_captures2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue