This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
estring/src/agg.rs

9 lines
133 B
Rust
Raw Normal View History

2022-07-25 22:48:17 +03:00
//! This module will contain aggregate functions (Sum, Product, etc)
//!
2022-07-28 00:51:26 +03:00
2022-07-28 13:09:09 +03:00
mod product;
2022-07-28 00:51:26 +03:00
mod sum;
2022-07-28 13:09:09 +03:00
pub use product::*;
2022-07-28 00:51:26 +03:00
pub use sum::*;