feat: toml arrays and inline tables support

This commit is contained in:
MihailRis
2024-10-11 20:43:37 +03:00
parent b984e363ea
commit 66825d62aa
3 changed files with 150 additions and 24 deletions
+3
View File
@@ -196,6 +196,9 @@ namespace dv {
value(std::shared_ptr<objects::Bytes> v) noexcept {
this->operator=(std::move(v));
}
value(list_t values) {
this->operator=(std::make_shared<list_t>(std::move(values)));
}
value(const value& v) noexcept : type(value_type::none) {
this->operator=(v);