card-est-array 0.6.0

Infrastructure for managing large arrays of cardinality estimators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * SPDX-FileCopyrightText: 2024 Matteo Dell'Acqua
 * SPDX-FileCopyrightText: 2025 Sebastiano Vigna
 *
 * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
 */

pub mod hyper_log_log;
pub use hyper_log_log::{HyperLogLog, HyperLogLogBuilder, HyperLogLogError, HyperLogLogHelper};

pub mod hyper_log_log8;
pub use hyper_log_log8::{HyperLogLog8, HyperLogLog8Builder};

mod slice_estimator_array;
pub use slice_estimator_array::*;

mod default_estimator;
pub use default_estimator::*;