Clippy + fmt

This commit is contained in:
Brian Carroll 2021-11-15 09:52:16 +00:00
parent 1c17797aa6
commit e200e6c346
2 changed files with 7 additions and 7 deletions

View file

@ -143,10 +143,7 @@ impl LowLevel {
pub fn is_higher_order(&self) -> bool {
use LowLevel::*;
match self {
higher_order!() => true,
_ => false,
}
matches!(self, higher_order!())
}
pub fn function_argument_position(&self) -> usize {