rdf_fusion_functions/aggregates/
mod.rs

1mod avg;
2mod group_concat;
3mod max;
4mod min;
5mod sum;
6
7pub use avg::*;
8pub use group_concat::*;
9pub use max::*;
10pub use min::*;
11pub use sum::*;