pub trait ScalarFnArrayExt: VTable {
// Provided method
fn try_new_array(
&'static self,
len: usize,
options: Self::Options,
children: impl Into<Vec<ArrayRef>>,
) -> VortexResult<ArrayRef> { ... }
}Expand description
Array factory functions for scalar functions.
Provided Methods§
fn try_new_array( &'static self, len: usize, options: Self::Options, children: impl Into<Vec<ArrayRef>>, ) -> VortexResult<ArrayRef>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.