Dmitry Arkhipov
Dmitry Arkhipov
I tested and it does indeed work. For example: ```cxx enum class K { A, B, C }; // tag_invoke for K removed for brevity check(std::map { { K::A, 1...
So, since #515 we do support all associative containers. Currently * If the container has unique keys (checked via the result type of `emplace`) and the type of key is...
You mean, alternative implementation when C++23 is supported?
But how would `serialize_impl` use it? It doesn't use `json::string`.
This doesn't seem to be the case.
What is the compilation error?
1. `core/detail/string_view.hpp` includes `` so, not including it in JSON is moot. 2. `std::string s = json::string_view(json::string());` works. And with C++17 `auto s = std::string(json::string());` also works. Is this good...
QString has toStdString, but I don't think Qt is the best example of model C++ API. I'm personally perfectly Ok with a conversion (even though it's a bit obscure in...
I'd there's more chance we create an API for direct JSON serialization that sidesteps value over allowing string_view in value. The point of value is to own its data.
@kamrann can you please describe how you use the library. Are you using the header-only mode? If so, have you put `#include ` in a dedicated source file, that you...