We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fe22c9 commit 0c9af75Copy full SHA for 0c9af75
vortex-array/src/array/mod.rs
@@ -5,6 +5,7 @@ pub mod display;
5
mod operator;
6
pub mod session;
7
pub mod transform;
8
+mod traversal;
9
mod visitor;
10
11
use std::any::Any;
@@ -647,7 +648,7 @@ impl<V: VTable> ArrayEq for ArrayAdapter<V> {
647
648
}
649
650
impl<V: VTable> ArrayVisitor for ArrayAdapter<V> {
- fn children<'a>(&'a self) -> Vec<&'a dyn Array> {
651
+ fn children(&self) -> Vec<&dyn Array> {
652
struct ChildrenCollector<'a> {
653
children: Vec<&'a dyn Array>,
654
0 commit comments