We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 613af3f commit dd547b3Copy full SHA for dd547b3
vortex-array/src/expr/transform/mod.rs
@@ -16,3 +16,12 @@ pub use partition::*;
16
pub use replace::*;
17
pub use simplify::*;
18
pub use simplify_typed::*;
19
+
20
+use crate::expr::traversal::Transformed;
21
+use crate::expr::{ExprId, Expression};
22
23
+trait ExpressionParentTransformer {
24
+ fn id(&self) -> ExprId;
25
26
+ fn reduce_parent(&self, expr: &Expression, parent: &Expression) -> Transformed<Expression>;
27
+}
0 commit comments