2015-06-20 22:59:33 +00:00
|
|
|
#include <json.hpp>
|
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-20 22:59:33 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create an array value
|
|
|
|
json array = {1, 2, 3, 4, 5};
|
|
|
|
|
|
|
|
// get am iterator to one past the last element
|
|
|
|
json::const_iterator it = array.cend();
|
|
|
|
|
|
|
|
// decrement the iterator to point to the last element
|
|
|
|
--it;
|
|
|
|
|
|
|
|
// serialize the element that the iterator points to
|
|
|
|
std::cout << *it << '\n';
|
|
|
|
}
|