add new json::stringify overloads

This commit is contained in:
MihailRis
2024-09-12 13:28:45 +03:00
parent 02677ac8be
commit 8be0ed819e
4 changed files with 67 additions and 21 deletions
+4
View File
@@ -14,6 +14,10 @@ namespace json {
const dynamic::Map* obj, bool nice, const std::string& indent
);
std::string stringify(
const dynamic::List* arr, bool nice, const std::string& indent
);
std::string stringify(
const dynamic::Value& value, bool nice, const std::string& indent
);