#include "pipeline_ranges.hpp" namespace cpp26 { auto top_values_by_category(const std::vector& records, int min_value) -> std::vector { (void)records; (void)min_value; return {}; } auto total_by_category(const std::vector& records) -> std::vector> { (void)records; return {}; } } // namespace cpp26