trunk
ondra05 2022-08-18 14:58:46 +02:00
parent 70d6bf661f
commit a9cdc03341
1 changed files with 2 additions and 18 deletions

View File

@ -221,15 +221,7 @@ impl<'a, I: BootlegRead> Interpreter<'a, I> {
}; };
Some((*counter, index)) Some((*counter, index))
}) })
.find_map( .find_map(|(counter, index)| (counter == 0).then_some(index))
|(counter, index)| {
if counter == 0 {
Some(index)
} else {
None
}
},
)
} }
fn get_matching_opening_bracket(&mut self, closing: usize) -> Option<usize> { fn get_matching_opening_bracket(&mut self, closing: usize) -> Option<usize> {
@ -245,15 +237,7 @@ impl<'a, I: BootlegRead> Interpreter<'a, I> {
}; };
Some((*counter, index)) Some((*counter, index))
}) })
.find_map( .find_map(|(counter, index)| (counter == 0).then_some(index))
|(counter, index)| {
if counter == 0 {
Some(index)
} else {
None
}
},
)
} }
} }