use std::hash::Hasher;
use vortex_dtype::DType;
use crate::Precision;
use crate::stats::StatsSetRef;
use crate::vtable::VTable;
pub trait BaseArrayVTable<V: VTable> {
fn len(array: &V::Array) -> usize;
fn dtype(array: &V::Array) -> &DType;
fn stats(array: &V::Array) -> StatsSetRef<'_>;
fn array_hash<H: Hasher>(array: &V::Array, state: &mut H, precision: Precision);
fn array_eq(array: &V::Array, other: &V::Array, precision: Precision) -> bool;
}