-
Hello JSON experts, I would like to create a nlohmann::json object, by parsing a file. Is that supported? I think that the nlohmann::json implementation typically used STL containers to store information, and these are typically safe to use with read-only access with multiple threads. At least on the Linux gcc compiler I am using (I don't need to care about other platforms). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, just treat it as any other STL container. Reading from multiple threads is safe. |
Beta Was this translation helpful? Give feedback.
Yes, just treat it as any other STL container. Reading from multiple threads is safe.