1
0
mirror of https://github.com/nlohmann/json synced 2024-11-10 06:20:06 +00:00

fixes #223 by updating README.md

This commit is contained in:
Kevin Dixon 2016-03-29 21:41:46 -07:00
parent 54d3cab568
commit 3df5337e79

View File

@ -187,6 +187,8 @@ std::cout << std::setw(4) << j << std::endl;
These operators work for any subclasses of `std::istream` or `std::ostream`.
Please note that setting the exception bit for `failbit` is inappropriate for this use case. It will result in program termination due to the `noexcept` specifier in use.
### STL-like access
We designed the JSON class to behave just like an STL container. In fact, it satisfies the [**ReversibleContainer**](http://en.cppreference.com/w/cpp/concept/ReversibleContainer) requirement.