pub trait StatisticsVTable<A> {
// Provided method
fn compute_statistics(
&self,
_array: A,
_stat: Stat,
) -> VortexResult<StatsSet> { ... }
}
Expand description
Encoding VTable for computing array statistics.
Provided Methods§
Sourcefn compute_statistics(&self, _array: A, _stat: Stat) -> VortexResult<StatsSet>
fn compute_statistics(&self, _array: A, _stat: Stat) -> VortexResult<StatsSet>
Compute the requested statistic. Can return additional stats.