Skip to main content

drive/query/drive_document_sum_query/executors/
mod.rs

1//! Per-`DocumentSumMode` executor modules. Each module owns a single
2//! executor function and the helpers it needs. Mirrors count's
3//! `executors/` layout — file names parallel byte-for-byte.
4
5pub mod per_in_value;
6pub mod point_lookup_proof;
7pub mod range_aggregate_carrier_proof;
8pub mod range_distinct_proof;
9pub mod range_no_proof;
10pub mod range_proof;
11pub mod total;