Skip to main content

visit_all

Function visit_all 

Source
pub fn visit_all<'a>(
    expr: &'a SqlExpression,
    f: &mut impl FnMut(&'a SqlExpression),
)
Expand description

Call f on expr and every descendant, pre-order.

The usual entry point for collectors (“find every column reference”, “find every aggregate”). Subquery statements are still not descended into — see the module docs.