feat: boolean type support finally

This commit is contained in:
MihailRis
2024-10-14 19:38:30 +03:00
parent b9074ebe47
commit cc6891dde8
3 changed files with 12 additions and 1 deletions
+3
View File
@@ -505,6 +505,9 @@ namespace dv {
inline bool isNumber() const noexcept {
return type == value_type::number;
}
inline bool isBoolean() const noexcept {
return type == value_type::boolean;
}
};
inline bool is_numeric(const value& val) {