pub fn get_indices_of_matching_exprs<F: FnOnce() -> EquivalenceProperties>(
targets: &[Arc<dyn PhysicalExpr>],
items: &[Arc<dyn PhysicalExpr>],
equal_properties: F
) -> Vec<usize>
Expand description
This function finds the indices of targets
within items
, taking into
account equivalences according to equal_properties
.