pub trait VectorIntoArray {
// Required method
fn into_array(self, dtype: DType) -> ArrayRef;
}Expand description
Trait for converting vector types into arrays.
Required Methods§
Sourcefn into_array(self, dtype: DType) -> ArrayRef
fn into_array(self, dtype: DType) -> ArrayRef
Converts the vector into an array of the specified data type.