Skip to main content

vortex_array/aggregate_fn/fns/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4pub mod all_nan;
5pub mod all_non_distinct;
6pub mod all_non_nan;
7pub mod all_non_null;
8pub mod all_null;
9pub mod bounded_max;
10pub mod bounded_min;
11pub mod count;
12pub mod first;
13pub mod is_constant;
14pub mod is_sorted;
15pub mod last;
16pub mod max;
17pub mod mean;
18pub mod min;
19pub mod min_max;
20pub mod nan_count;
21pub mod null_count;
22pub mod sum;
23pub mod uncompressed_size_in_bytes;