add file.read_combined_list(...)

This commit is contained in:
MihailRis
2024-09-30 01:55:42 +03:00
parent f20a0dfae0
commit e590d06bb0
5 changed files with 63 additions and 8 deletions
+5
View File
@@ -63,8 +63,13 @@ namespace files {
/// @brief Read JSON or BJSON file
/// @param file *.json or *.bjson file
dv::value read_json(const fs::path& file);
dv::value read_binary_json(const fs::path& file);
/// @brief Read TOML file
/// @param file *.toml file
dv::value read_toml(const fs::path& file);
std::vector<std::string> read_list(const fs::path& file);
bool is_data_file(const fs::path& file);