(&self)
| 141 | } |
| 142 | |
| 143 | pub fn is_comparison(&self) -> bool { |
| 144 | matches!( |
| 145 | self, |
| 146 | Self::Eq | Self::Neq | Self::Lt | Self::Gt | Self::Lte | Self::Gte |
| 147 | ) |
| 148 | } |
| 149 | |
| 150 | pub fn is_set_op(&self) -> bool { |
| 151 | matches!(self, Self::And | Self::Or | Self::Unless) |
no outgoing calls
no test coverage detected