(&self, context: Context, arguments_types: Vec<Type>)
| 454 | #[typetag::serde] |
| 455 | impl CustomOperationBody for GreaterThan { |
| 456 | fn instantiate(&self, context: Context, arguments_types: Vec<Type>) -> Result<Graph> { |
| 457 | instantiate_comparison_custom_op( |
| 458 | context, |
| 459 | arguments_types, |
| 460 | self.signed_comparison, |
| 461 | &self.get_name(), |
| 462 | |res| res.greater_than(), |
| 463 | ) |
| 464 | } |
| 465 | |
| 466 | fn get_name(&self) -> String { |
| 467 | format!("GreaterThan(signed_comparison={})", self.signed_comparison) |
nothing calls this directly
no test coverage detected