Skip to main content

vortex_compressor/stats/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! Compression statistics types and caching.
5
6mod bool;
7mod cache;
8mod float;
9mod integer;
10mod options;
11mod string;
12
13pub use bool::BoolStats;
14pub use cache::ArrayAndStats;
15pub use float::DistinctInfo as FloatDistinctInfo;
16pub use float::ErasedStats as FloatErasedStats;
17pub use float::FloatStats;
18pub use float::TypedStats as FloatTypedStats;
19pub use integer::DistinctInfo as IntegerDistinctInfo;
20pub use integer::ErasedStats as IntegerErasedStats;
21pub use integer::IntegerStats;
22pub use integer::TypedStats as IntegerTypedStats;
23pub use options::GenerateStatsOptions;
24pub use string::StringStats;