peter-toth commented on code in PR #13467: URL: https://github.com/apache/datafusion/pull/13467#discussion_r1848246474
########## datafusion/common/src/tree_node.rs: ########## @@ -769,6 +770,263 @@ impl<T> Transformed<T> { } } +/// [`Container`] contains elements that a function can be applied on or mapped. The +/// elements of the container are siblings so the continuation rules are similar to +/// [`TreeNodeRecursion::visit_sibling`] / [`Transformed::transform_sibling`]. +pub trait Container<'a, T: 'a>: Sized { + fn apply_elements<F: FnMut(&'a T) -> Result<TreeNodeRecursion>>( + &'a self, + f: F, + ) -> Result<TreeNodeRecursion>; + + fn map_elements<F: FnMut(T) -> Result<Transformed<T>>>( + self, + f: F, + ) -> Result<Transformed<Self>>; +} + +impl<'a, T: 'a, C: Container<'a, T>> Container<'a, T> for Box<C> { + fn apply_elements<F: FnMut(&'a T) -> Result<TreeNodeRecursion>>( Review Comment: Actually, introducing `dyn FnMut` (trait objects) would mean dynamic dispatch and so come with performance penalty. Trait aliase (https://doc.rust-lang.org/beta/unstable-book/language-features/trait-alias.html) is an unstalbe feature yet. ########## datafusion/common/src/tree_node.rs: ########## @@ -769,6 +770,263 @@ impl<T> Transformed<T> { } } +/// [`Container`] contains elements that a function can be applied on or mapped. The +/// elements of the container are siblings so the continuation rules are similar to +/// [`TreeNodeRecursion::visit_sibling`] / [`Transformed::transform_sibling`]. +pub trait Container<'a, T: 'a>: Sized { + fn apply_elements<F: FnMut(&'a T) -> Result<TreeNodeRecursion>>( + &'a self, + f: F, + ) -> Result<TreeNodeRecursion>; + + fn map_elements<F: FnMut(T) -> Result<Transformed<T>>>( + self, + f: F, + ) -> Result<Transformed<Self>>; +} + +impl<'a, T: 'a, C: Container<'a, T>> Container<'a, T> for Box<C> { + fn apply_elements<F: FnMut(&'a T) -> Result<TreeNodeRecursion>>( Review Comment: Actually, introducing `dyn FnMut` (trait objects) would mean dynamic dispatch and so come with performance penalty. Trait alias (https://doc.rust-lang.org/beta/unstable-book/language-features/trait-alias.html) is an unstalbe feature yet. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org