Trying to find a way how to serialize
std::unordered_map<std::string, std::variant<bool, int, float, std::string>> m_Settings{};
Is there any other way to serialize it other than going through each record in the map?
Trying to find a way how to serialize
std::unordered_map<std::string, std::variant<bool, int, float, std::string>> m_Settings{};
Is there any other way to serialize it other than going through each record in the map?