reifydb_engine/function/math/aggregate/
mod.rs

1// Copyright (c) reifydb.com 2025
2// This file is licensed under the AGPL-3.0-or-later, see license.md file
3
4pub use avg::Avg;
5pub use count::Count;
6pub use max::Max;
7pub use min::Min;
8pub use sum::Sum;
9
10mod avg;
11mod count;
12mod max;
13mod min;
14mod sum;