(&self, other: &Box<dyn Value>)
| 198 | #[allow(unused_variables)] |
| 199 | #[allow(clippy::borrowed_box)] |
| 200 | fn null_safe_eq_op(&self, other: &Box<dyn Value>) -> Result<Box<dyn Value>, String> { |
| 201 | Err("Unsupported operator for this type".to_string()) |
| 202 | } |
| 203 | |
| 204 | /// Perform unary `<=> [ALL|ANY|SOME]` operator and return new [`Value`] represent the result or Exception message as [`String`] |
| 205 | #[allow(unused_variables)] |
no outgoing calls
no test coverage detected