// // Created by Grant Horner on 12/4/25. // #pragma once #include #include #include constexpr std::string_view to_string_view(const std::ranges::subrange cs) { return std::string_view{cs.data(), cs.size()}; } inline std::string read_file(std::string_view path) { std::ifstream input(path.data()); std::stringstream buffer; buffer << input.rdbuf(); return buffer.str(); }