pub trait ExecutionArgs {
// Required methods
fn get(&self, index: usize) -> VortexResult<ArrayRef>;
fn num_inputs(&self) -> usize;
fn row_count(&self) -> usize;
}Expand description
Arguments for expression execution.
Required Methods§
Sourcefn get(&self, index: usize) -> VortexResult<ArrayRef>
fn get(&self, index: usize) -> VortexResult<ArrayRef>
Returns the input array at the given index.
Sourcefn num_inputs(&self) -> usize
fn num_inputs(&self) -> usize
Returns the number of inputs.