Trait StatisticsVTable

Source
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§

Source

fn compute_statistics(&self, _array: A, _stat: Stat) -> VortexResult<StatsSet>

Compute the requested statistic. Can return additional stats.

Implementors§