pub fn get_indices_of_matching_exprs<T: Borrow<Arc<dyn PhysicalExpr>>, F: FnOnce() -> EquivalenceProperties>(
targets: impl IntoIterator<Item = T>,
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
.