#pragma once #include #include namespace hex { template std::string format(std::string_view format, Args... args) { return fmt::format(fmt::runtime(format), args...); } }