(&self)
| 284 | } |
| 285 | |
| 286 | fn not_op(&self) -> Result<Box<dyn Value>, String> { |
| 287 | Ok(Box::new(BoolValue::new(!self.value))) |
| 288 | } |
| 289 | |
| 290 | fn cast_op(&self, target_type: &Box<dyn DataType>) -> Result<Box<dyn Value>, String> { |
| 291 | // Cast to Int Type |
no outgoing calls
no test coverage detected