Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
inspect_expr_pre in datafusion_expr::expr_visitor - Rust
[go: Go Back, main page]

pub fn inspect_expr_pre<F, E>(expr: &Expr, f: F) -> Result<(), E>where
    F: FnMut(&Expr) -> Result<(), E>,
Expand description

Recursively inspect an Expr and all its childen.

Performs a pre-visit traversal by recursively calling f(expr) on expr, and then on all its children. See ExpressionVisitor for more details and more options to control the walk.